/* Select2 Custom Dark Theme Styling */

/* Dropdown Container */
.select2-dropdown {
    background-color: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

/* Search Input in Dropdown */
.select2-container--default .select2-search--dropdown {
    padding: 10px;
    background-color: transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: #f1f5f9;
    padding: 8px 14px;
    outline: none;
    transition: all 0.3s ease;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: #64748b;
}

/* Results Options */
.select2-container--default .select2-results__option {
    padding: 10px 14px;
    color: #f1f5f9;
    transition: all 0.2s ease;
    background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.select2-container--default .select2-results__option--highlighted[aria-selected=true] {
    background-color: rgba(96, 165, 250, 0.25);
    color: #60a5fa;
}

.select2-results__option:hover {
    background-color: rgba(96, 165, 250, 0.1);
}

.select2-container--default .select2-results__option--disabled {
    color: #64748b;
}

.select2-container--default .select2-results__option--loading {
    color: #64748b;
}

.select2-results > .select2-results__options {
    background-color: transparent;
}

/* Light Theme Styles */
[data-theme="light"] .select2-dropdown {
    background-color: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: #1a1a1a !important;
}

[data-theme="light"] .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1) !important;
}

[data-theme="light"] .select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: #64748b !important;
}

[data-theme="light"] .select2-container--default .select2-results__option {
    color: #1a1a1a !important;
}

[data-theme="light"] .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(96, 165, 250, 0.15) !important;
    color: #2563eb !important;
}

[data-theme="light"] .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(96, 165, 250, 0.1) !important;
    color: #2563eb !important;
}

[data-theme="light"] .select2-container--default .select2-results__option--highlighted[aria-selected=true] {
    background-color: rgba(96, 165, 250, 0.2) !important;
    color: #2563eb !important;
}

[data-theme="light"] .select2-results__option:hover {
    background-color: rgba(96, 165, 250, 0.08) !important;
}

[data-theme="light"] .select2-container--default .select2-results__option--disabled {
    color: #94a3b8 !important;
}

[data-theme="light"] .select2-container--default .select2-results__option--loading {
    color: #94a3b8 !important;
}

/* Light Theme Styles for Select2 Selection Field (Closed State) */
[data-theme="light"] .select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .select2-container--default .select2-selection--single:hover {
    border-color: rgba(0, 0, 0, 0.3) !important;
}

[data-theme="light"] .select2-container--default.select2-container--focus .select2-selection--single,
[data-theme="light"] .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #60a5fa !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1) !important;
}

[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1a1a1a !important;
}

[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #64748b !important;
}

[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #64748b transparent transparent transparent !important;
}

[data-theme="light"] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #60a5fa transparent !important;
}

[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__clear {
    color: #64748b !important;
}

[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #f87171 !important;
}
