/* Style the Select2 selection box */
.select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #d9d9d9;      /* Light gray border like your design */
    border-radius: 2px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    box-shadow: none;
}

/* Remove the default Select2 arrow background */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
    top: 0;
    width: 20px;
}

/* Style the dropdown list */
.select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
}

/* Highlight selected option */
.select2-container--default .select2-results__option--highlighted {
    background-color: #0066cc;  /* Same as your blue highlight */
    color: white;
}

/* Selected value in the dropdown */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6e6e6e;
    line-height: 1.5;
}

/* Open dropdown border fix */
.select2-container--open .select2-selection--single {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}




/* Multi-select */
.select2-container--default .select2-selection--multiple {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    min-height: 50px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #dee2e6;
    border: none;
    border-radius: 0.2rem;
    padding: 0.25rem 0.5rem;
    margin-top: 0.25rem;
    color: #495057;
}

.select2-container--default .select2-selection--multiple .select2-search__field {
    margin-top: 0.3rem;
} */
