/**
 * State Dropdown Styles
 */

/* Ensure state dropdown displays properly */
.form-group-state-injected .filter-state-select {
    width: 100% !important;
    display: block;
}

/* Fix select2 container width issue */
.form-group-state-injected.select2-container {
    width: 100% !important;
}

.form-group-state-injected .select2-container {
    width: 100% !important;
}

.form-group-state-injected .select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 40px;
}

.form-group-state-injected .select2-container--default.select2-container--open .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Dropdown menu */
.select2-dropdown.select2-dropdown--below {
    width: 100% !important;
}

.select2-dropdown {
    min-width: 250px;
}

/* Options visibility */
.select2-results__option {
    padding: 6px 10px;
    color: #333;
}

.select2-results__option--highlighted {
    background-color: #007bff;
    color: white;
}

/* Ensure proper z-index for dropdown */
body .select2-container--open {
    z-index: 1050;
}

/* nudge the dropdown up so it sits flush with the select box */
.select2-container--open .select2-dropdown {
    margin-top: 1px !important;
}
