﻿/* Select box appearance */
.select2-container--default .select2-selection--single {
    background-color: #1c1c1c; /* match your modal bg */
    border: 1px solid #6c757d;
    color: #fff;
    height: 38px;
    padding: 6px 12px;
}

/* Selected text inside the box */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
}

/* Dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 6px;
}

/* Dropdown panel */
.select2-container--default .select2-dropdown {
    background-color: #1c1c1c;
    border: 1px solid #6c757d;
    color: #fff;
}

/* Search box inside dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
}

/* Option items */
.select2-container--default .select2-results > .select2-results__options {
    background-color: #1c1c1c;
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #b86613;
    color: #fff;
}


.select2-container .select2-selection--single {
    height: auto !important;
}
