﻿/* Select2 kutusunun genel çerçevesi */
.select2-container--default .select2-selection--single {
    border: 2px solid #dee2e6 !important; /* Senin formlarındaki border-2 kalınlığı */
    border-radius: 10px !important; /* Formlarındaki yuvarlaklık */
    height: 45px !important;
    padding: 8px 12px !important;
    transition: border-color 0.15s ease-in-out;
}

/* Seçim kutusuna odaklanıldığında (Focus) */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #e91e63 !important; /* Fokus olunca pembe olsun */
    outline: 0;
}

/* Ok simgesinin konumu */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
    right: 10px !important;
}

/* Seçilen metnin rengi ve hizalaması */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6c757d !important; 
    line-height: 28px !important;
}

/* Arama kutusu ve Dropdown listesi */
.select2-dropdown {
    border: 2px solid #e91e63 !important; 
    border-radius: 10px !important;
    overflow: hidden;
    z-index: 9999;
}


.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e91e63 !important; 
    color: white !important;
}

.select2-results__option {
    padding: 10px 15px !important;
    font-size: 14px;
}


.select2-container--default .select2-selection--clear {
    color: #e91e63 !important;
    font-weight: bold;
    margin-right: 10px;
}
