/* ========================================
   CUSTOM SELECT2 STYLES FOR DARK THEME
   ======================================== */

/* Select2 Container */
.select2-container {
    z-index: 9999 !important;
}

/* Select2 Dropdown */
.select2-search--dropdown .select2-search__field:focus {
    outline: none !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent !important;
    border: none !important;
    outline: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: textfield !important;
    appearance: textfield !important;
    color: #fff !important;
}

/* Select2 Results */
.select2-results__option:hover {
    background-color: #007bff !important;
    color: #fff !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #007bff !important;
    color: #fff !important;
}

.select2-results__option[aria-selected=true] {
    background-color: #0056b3 !important;
    color: #fff !important;
}

/* Select2 Selection */
.select2-selection--single {
    height: 38px !important;
    line-height: 36px !important;
    background-color: var(--dark-body-form) !important;
    border-color: var(--dark-border) !important;
    color: var(--text-dark) !important;
}

.select2-selection--multiple {
    min-height: 38px !important;
    padding: 4px !important;
    background-color: var(--dark-body-form) !important;
    border-color: var(--dark-border) !important;
}

.select2-selection--multiple .select2-selection__rendered {
    color: var(--text-dark) !important;
    padding: 0 !important;
}

/* Select2 Selection Arrow */
.select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 8px !important;
}

.select2-selection--single .select2-selection__arrow b {
    border-color: var(--text-dark) transparent transparent transparent !important;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--text-dark) transparent !important;
}

/* Select2 Tags (for multiple selection) */
.select2-selection--multiple .select2-selection__choice {
    background-color: #007bff !important;
    color: #fff !important;
    border: 1px solid #0056b3 !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    margin: 2px !important;
}

.select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 5px !important;
    font-weight: bold !important;
}

.select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff6b6b !important;
}

/* Select2 Placeholder */
.select2-selection--single .select2-selection__placeholder {
    color: #aaa !important;
}

/* Select2 Clear Button */
.select2-selection--single .select2-selection__clear {
    color: var(--text-dark) !important;
    margin-right: 20px !important;
}

.select2-selection--single .select2-selection__clear:hover {
    color: #ff6b6b !important;
}

/* Select2 Loading */
.select2-results__option--loading {
    color: #aaa !important;
    font-style: italic !important;
}

/* Select2 No Results */
.select2-results__option--no-results {
    color: #aaa !important;
    font-style: italic !important;
    background-color: transparent !important;
}

/* Select2 Focus States */
.select2-container--focus .select2-selection {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

/* Select2 Open State */
.select2-container--open .select2-dropdown {
    background-color: var(--dark-body-form) !important;
    border-color: var(--dark-border) !important;
}

/* Select2 Disabled State */
.select2-container--disabled .select2-selection {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

/* Select2 RTL Support */
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 8px !important;
    right: auto !important;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__clear {
    margin-left: 20px !important;
    margin-right: 0 !important;
}

/* Select2 in Modal */
.modal .select2-container {
    z-index: 99999 !important;
}

.modal .select2-dropdown {
    z-index: 99999 !important;
}

/* Select2 Modal Styling */
.modal .select2-container--default .select2-selection--multiple {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    min-height: 38px !important;
}

.modal .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.modal .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--text-dark) !important;
}

/* Custom styles for Select2 borders */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #0d6efd !important;
    border-radius: 0.375rem !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #0d6dfd20 !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: 1px solid #0d6efd !important;
    background-color: #e7f1ff !important;
}

/* Dark theme specific overrides */
[data-bs-theme="dark"] .select2-selection--single {
    background-color: #2a2a2a !important;
    border-color: #444 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .select2-selection--multiple {
    background-color: #2a2a2a !important;
    border-color: #444 !important;
}

[data-bs-theme="dark"] .select2-dropdown {
    background-color: #2a2a2a !important;
    border-color: #444 !important;
}

[data-bs-theme="dark"] .select2-results__option {
    color: #fff !important;
}

[data-bs-theme="dark"] .select2-results__option:hover {
    background-color: #007bff !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
}

[data-bs-theme="dark"] .select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #fff transparent !important;
}
