/* Container styling to match your dark theme */
.chosen-container {
    font-size: 14px;
    border-radius: 4px;
}

/* Single chosen dropdown styling */
.chosen-container-single .chosen-single {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    height: 36px;
    line-height: 34px;
    color: #333;
    box-shadow: none;
}

/* Dropdown arrow */
.chosen-container-single .chosen-single div b {
    background-position: 0 8px;
}

/* Search input styling */
.chosen-container-active.chosen-with-drop .chosen-single {
    background: #ffffff;
    border: 1px solid #2d74da;
    box-shadow: 0 0 0 2px rgba(45, 116, 218, 0.2);
}

/* Dropdown styling */
.chosen-container .chosen-drop {
    border: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Results styling */
.chosen-container .chosen-results {
    padding: 5px 0;
    margin: 0;
    color: #333;
}

.chosen-container .chosen-results li {
    padding: 8px 10px;
    line-height: 1.2;
}

/* Highlighted result */
.chosen-container .chosen-results li.highlighted {
    background: #2d74da;
    color: #ffffff;
}

/* Selected option */
.chosen-container .chosen-results li.result-selected {
    background-color: #f0f0f0;
    color: #333;
}

/* Search input */
.chosen-container-single .chosen-search input[type="text"] {
    border: 1px solid #e0e0e0;
    padding: 8px;
}

/* Disabled state */
.chosen-disabled {
    opacity: 0.6;
}

/* Multi-select specific styles */
.chosen-container-multi .chosen-choices {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 4px;
}

.chosen-container-multi .chosen-choices li.search-choice {
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 5px 25px 5px 8px;
}