/*Write your custom css in this file.*/

/* Dark theme dropdown fixes */
[data-bs-theme="dark"] .select2-container--default .select2-selection--single {
    background-color: #2b3035 !important;
    border: 1px solid #495057 !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
}

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

[data-bs-theme="dark"] .select2-dropdown {
    background-color: #2b3035 !important;
    border: 1px solid #495057 !important;
}

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

[data-bs-theme="dark"] .select2-results__option--highlighted {
    background-color: #0d6efd !important;
    color: #ffffff !important;
}

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

[data-bs-theme="dark"] .select2-search__field {
    background-color: #2b3035 !important;
    color: #ffffff !important;
    border: 1px solid #495057 !important;
}

/* Fix other form controls in dark theme */
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: #2b3035 !important;
    border: 1px solid #495057 !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    background-color: #2b3035 !important;
    border-color: #0d6efd !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

/* Multi-select dropdown fixes */
[data-bs-theme="dark"] .select2-container--default .select2-selection--multiple {
    background-color: #2b3035 !important;
    border: 1px solid #495057 !important;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #495057 !important;
    border: 1px solid #6c757d !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff !important;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff6b6b !important;
}