/* Location Autocomplete Styles */
.location-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.location-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.location-autocomplete-item:last-child {
    border-bottom: none;
}

.location-autocomplete-item:hover,
.location-autocomplete-item.selected {
    background-color: #f9fafb;
}

.location-autocomplete-item.location-zone {
    padding-left: 28px;
    font-size: 13px;
    color: #6b7280;
}

.location-autocomplete-item.location-zone:before {
    content: '↳ ';
    position: absolute;
    left: 16px;
    color: #9ca3af;
}

/* Custom scrollbar for dropdown */
.location-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}

.location-autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 8px 8px 0;
}

.location-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.location-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}








