/* Select2 Dark Mode Özelleştirmesi */
.select2-container--default .select2-selection--single {
    background-color: #18181b !important; /* Input arkaplanı */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Kenarlık */
    border-radius: 0.75rem !important; /* Rounded-xl */
    height: 50px !important; /* Yükseklik */
    display: flex;
    align-items: center;
}

/* Yazı Rengi */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
    padding-left: 1rem;
}

/* Ok İşareti */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6b7280 transparent transparent transparent !important;
}

/* Açılan Liste (Dropdown) */
.select2-dropdown {
    background-color: #18181b !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    z-index: 9999;
}

/* Arama Kutusu */
.select2-search__field {
    background-color: #0f1014 !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem !important;
}

/* Seçenekler */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ff6b00 !important; /* Hover rengi (Turuncu) */
    color: white !important;
}
.select2-results__option {
    padding: 10px;
    font-size: 14px;
}