/* Premium Location Search Styling - Antigravity Signature */

/* Container & Selection */
.location-search-wrapper .select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #e9eaf0;
    border-radius: 12px;
    height: 52px;
    padding: 0 16px 0 45px !important; /* Make room for the left icon */
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
}

.location-search-wrapper .select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #00aaff;
    box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Icon positioning */
.location-search-wrapper .icon--left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.location-search-wrapper.focus .icon--left svg {
    stroke: #00aaff;
    filter: drop-shadow(0 0 2px rgba(0, 170, 255, 0.3));
}

/* Placeholder & Text */
.location-search-wrapper .select2-selection__rendered {
    color: #191f33 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    padding-left: 0 !important;
}

.location-search-wrapper .select2-selection__placeholder {
    color: #939aad !important;
    font-weight: 400;
}

/* Dropdown Menu */
.select2-container--bootstrap-5 .select2-dropdown {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

/* Search field inside dropdown */
.select2-container--bootstrap-5 .select2-dropdown .select2-search__field {
    border-radius: 8px;
    border: 1px solid #e9eaf0;
    margin: 8px;
    width: calc(100% - 16px) !important;
}

/* Results */
.select2-container--bootstrap-5 .select2-results__option {
    padding: 12px 16px !important;
    font-size: 14px;
    color: #464d61;
    transition: all 0.2s ease;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #f1f9ff !important;
    color: #00aaff !important;
}

.select2-container--bootstrap-5 .select2-results__option[aria-selected='true'] {
    background-color: #00aaff !important;
    color: #fff !important;
}

/* Loading/No results message */
.select2-results__option.select2-results__message {
    text-align: center;
    padding: 20px !important;
    color: #939aad;
    font-style: italic;
}

/* Hide default Select2 arrow */
.select2-container--bootstrap-5 .select2-selection--single {
    background-image: none !important;
}
