/* Airport Select2 Plugin Styles */
.airport-select2-container {
    position: relative;
}

/* Match the original input styling */
.select2-container--default .select2-selection--single {
    height: 38px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    color: #333 !important;
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent !important;
}

/* Dropdown styling */
.select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.select2-container--default .select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    /* background-color: #0f3449 !important;
    color: white !important; */
    
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e8f4fd !important;
    color: #0f3449 !important;
}

/* Loading state */
.select2-container--default .select2-results__option--loading {
    color: #999 !important;
}

/* Search box styling */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    font-size: 14px;
}

/* Focus states */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #0f3449 !important;
    box-shadow: 0 0 0 2px rgba(15, 52, 73, 0.1) !important;
}

.select2-container--default .select2-selection--single:focus {
    outline: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: 44px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 42px !important;
        font-size: 16px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 42px !important;
    }
}

/* Integration with existing form error styles */
.input-with-error .select2-container--default .select2-selection--single {
    /* border-color: #ddd !important; */
        border: 1px solid #fff !important;
            border-bottom: 1px solid #0F3449 !important;
            box-shadow: none !important;
}

.input-with-error.error .select2-container--default .select2-selection--single {
    border-color: #dc3545 !important;
}

/* Ensure Select2 dropdown appears above other elements */
.select2-dropdown {
    z-index: 9999 !important;
}
