/* ============================================
   Google Places Autocomplete (Classic API)
   Style the .pac-container dropdown to match Bootstrap.
   Uses google.maps.places.Autocomplete which attaches
   to an existing <input> — no web component needed.
   ============================================ */
.pac-container {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.25rem;
    background-color: #fff;
    font-family: inherit;
    z-index: 10000;
}
.pac-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #212529;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}
.pac-item:first-child {
    border-top: none;
}
.pac-item:hover,
.pac-item-selected {
    background-color: #e9ecef;
}
