/* Perbaikan styling Select2 untuk tema gelap */
.select2-dropdown {
    background-color: #fff !important;
    border: 1px solid #d2d6de !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #fff !important;
    border: 1px solid #d2d6de !important;
    color: #000 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd !important;
    color: #000 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3c8dbc !important;
    color: #fff !important;
}

/* Perbaikan untuk dropdown Select2 dalam tema gelap */
.select2-dropdown .select2-search__field,
.select2-search--inline .select2-search__field {
    background-color: #fff !important;
    color: #000 !important;
}

/* Perbaikan untuk hasil pencarian Select2 */
.select2-results__option {
    color: #000 !important;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999 !important;
}