


/* Main Select2 container and single selection box */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 2px solid #dbdbdb;
    border-radius: 3px;
    height: 50px;  /* Unified height */
}

/* Adjust padding and text alignment within the selection box */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
    color: #444;  /* Text color */
    line-height: 50px;  /* Vertically center text */
}

/* Dropdown arrow customization */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -7px;
    margin-top: 9px;
}

/* Dropdown styling */
.select2-dropdown {
    border: 2px solid #dbdbdb;
}

/* Search field inside the dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #787878;
    border-radius: 3px;
}

/* Dropdown options */
.select2-results__option {
    padding: 6px 10px;
}

/* Highlighted and selectable options */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #999999; /* Highlight color */
    color: white; /* Text color for highlighted option */
}

.select2-container--default .select2-results__option--selected {
    background-color: #e6e6e6;
}


.select2-container--default .select2-results__option--highlighted {
    outline: none !important;
}