/* ── EPA: Google Places pac-container theme ─────────── */
.pac-container {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,.5);
    font-family: inherit;
    z-index: 99999 !important;
}

/* When Google hides the container (display:none), make
   absolutely sure it can't intercept pointer events */
.pac-container[style*="display: none"],
.pac-container[style*="display:none"] {
    pointer-events: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.pac-item {
    background-color: #1e1e1e;
    border-top: 1px solid #2a2a2a;
    color: #ccc;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
}
.pac-item:hover,
.pac-item-selected {
    background-color: #2a2a2a;
}
.pac-item-query {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.pac-matched {
    color: #c8a96e;
    font-weight: 600;
}
.pac-container:after {
    background-color: #1e1e1e;
}
