/* Custom Select2 Styling to match Chosen style */
.select2-container {
    width: 100% !important;
    text-align: left !important;
    font-weight: 400 !important;
    margin-bottom: 25px !important;
}

/* Match form field styling */
.select2-container--default .select2-selection--single {
    height: 40px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    background-color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
    line-height: 38px !important;
    padding-left: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
    right: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6c757d transparent transparent transparent !important;
}

/* Clear button */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #999 !important;
    font-size: 18px !important;
    margin-right: 25px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #666 !important;
}

/* Dropdown styling - Light ash colors like Chosen */
.select2-container--default .select2-dropdown {
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
}

/* Selection colors - Light gray/ash like Chosen */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

/* Focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #80bdff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}