/* Match Tailwind form inputs: px-5 py-4 bg-slate-50 border border-slate-200 rounded-2xl text-lg focus:ring-emerald-500 */
.address-field-wrap {
    overflow: visible;
}

.address-autocomplete-host {
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 30;
}

.address-autocomplete-host gmp-place-autocomplete {
    width: 100%;
    display: block;
    box-sizing: border-box;
    color-scheme: light;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #0f172a;
    min-height: 3.625rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.address-autocomplete-host gmp-place-autocomplete:focus-within {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px #10b981;
}

/* Legacy Autocomplete fallback dropdown */
.pac-container {
    z-index: 10050 !important;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.12);
    margin-top: 0.35rem;
    font-family: inherit;
    font-size: 1.125rem;
}

.pac-item {
    padding: 0.75rem 1.25rem;
    line-height: 1.35;
    cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
    background-color: #ecfdf5;
}
