/* Select2 Custom Styling - Global Overrides */

/* Container */
.select2-container {
    width: 100% !important;
}

/* Single Select Styling */
.select2-container .select2-selection--single {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    height: auto !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    background-color: #fff !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    line-height: normal !important;
    color: #333 !important;
    font-size: 0.875rem !important;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 5px !important;
}

/* Focus and Open States */
.select2-container--open .select2-selection--single,
.select2-container--focus .select2-selection--single {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
    outline: none !important;
}

/* Dropdown Styling */
.select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
}

.select2-results__option {
    padding: 8px 12px !important;
    font-size: 0.875rem !important;
}

.select2-results__option--highlighted {
    background-color: #0d6efd !important;
    color: white !important;
}

/* Search Field in Dropdown */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 6px 10px !important;
    font-size: 0.875rem !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #0d6efd !important;
    outline: none !important;
}

/* Ensure Select2 container matches form-select-custom width */
.form-select-custom + .select2-container {
    width: 100% !important;
}

/* Multiple Select Styling */
.select2-container .select2-selection--multiple {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    min-height: 38px !important;
    background-color: #fff !important;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #0d6efd !important;
    border: none !important;
    border-radius: 3px !important;
    color: white !important;
    padding: 3px 8px !important;
    margin: 2px !important;
}

.select2-container
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: white !important;
    margin-right: 5px !important;
}

.select2-container
    .select2-selection--multiple
    .select2-selection__choice__remove:hover {
    color: #ffcccc !important;
}

/* Ensure dropdown appears above modals if needed */
.select2-container--open {
    z-index: 9999 !important;
}

.select2-dropdown {
    z-index: 9999 !important;
}
