/* Fix for sprint selector in dark mode */
.dark-mode .select2-container--default .select2-selection--single {
    background-color: #2d3748 !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

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

.dark-mode .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #a0aec0 !important;
}

.dark-mode .select2-container--default .select2-selection--single .select2-selection__arrow {
    color: #e2e8f0 !important;
}

.dark-mode .select2-dropdown {
    background-color: #2d3748 !important;
    border-color: #4a5568 !important;
}

.dark-mode .select2-container--default .select2-results__option {
    color: #e2e8f0 !important;
}

.dark-mode .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

.dark-mode .select2-search--dropdown .select2-search__field {
    background-color: #2d3748 !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

/* Light mode styles */
.light-mode .select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
    color: #374151 !important;
}

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

.light-mode .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6b7280 !important;
}

.light-mode .select2-container--default .select2-selection--single .select2-selection__arrow {
    color: #374151 !important;
}

.light-mode .select2-dropdown {
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
}

.light-mode .select2-container--default .select2-results__option {
    color: #374151 !important;
}

.light-mode .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
}

.light-mode .select2-search--dropdown .select2-search__field {
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
    color: #374151 !important;
}

