/**
 * Custom dark theme for Select2 dropdowns
 */

/* Search field styling */
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ced4da !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.25) !important;
}

/* Dropdown container */
.select2-container--default .select2-dropdown {
    background-color: #212529 !important;
    border: 1px solid #495057 !important;
}

/* Results options */
.select2-container--default .select2-results__option {
    color: #ffffff !important;
    padding: 8px 12px !important;
}

/* Hover state for options */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #343a40 !important;
    color: #ffffff !important;
}

/* Selected option */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #495057 !important;
    color: #ffffff !important;
}

/* Highlight text matches */
.select2-results__option .bg-warning {
    background-color: rgba(253, 126, 20, 0.4) !important;
    color: #ffffff !important;
    font-weight: bold;
    padding: 0 2px;
    border-radius: 2px;
}

/* Selection display box */
.select2-container--default .select2-selection--single {
    background-color: #212529 !important;
    border: 1px solid #495057 !important;
    color: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
}

/* Disabled state */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #343a40 !important;
    cursor: not-allowed;
}

/* Fix z-index for modals */
.select2-container--open {
    z-index: 9999 !important;
}