/* Geoapify Autocomplete Styling */
#location-autocomplete-suggestions {
    scrollbar-width: thin;
    scrollbar-color: #ca8a04 #1f2937;
}

#location-autocomplete-suggestions::-webkit-scrollbar {
    width: 8px;
}

#location-autocomplete-suggestions::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

#location-autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: #ca8a04;
    border-radius: 4px;
}

#location-autocomplete-suggestions::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}

.location-suggestion {
    transition: background-color 0.2s ease;
}

.location-suggestion:hover,
.location-suggestion.bg-yellow-600\/30 {
    background-color: rgba(202, 138, 4, 0.2) !important;
}

.location-suggestion:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.location-suggestion:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}