/* Custom Select2 styling to match niceSelect appearance */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 5px !important;
    background-color: #fff !important;
    padding: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #666 !important;
    line-height: 48px !important;
    padding-left: 15px !important;
    padding-right: 30px !important;
    font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 4px 0 4px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    position: absolute !important;
    top: 50% !important;
    width: 0 !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #666 transparent !important;
    border-width: 0 4px 5px 4px !important;
}

.select2-dropdown {
    border: 1px solid #e5e5e5 !important;
    border-radius: 5px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.select2-container--default .select2-results__option {
    padding: 12px 15px !important;
    font-size: 14px !important;
    color: #666 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #007bff !important;
    color: white !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f8f9fa !important;
    color: #007bff !important;
}

/* Focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

/* Invalid state */
.select2-container.is-invalid .select2-selection--single {
    border-color: #dc3545 !important;
}