/* Alkemy_AddressAutocomplete — dropdown suggerimenti Google Places */
.alkemy-pac-anchor {
    position: relative;
}

.alkemy-pac-list {
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 100%;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    max-height: 280px;
    overflow-y: auto;
}

.alkemy-pac-list[hidden] {
    display: none;
}

.alkemy-pac-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
    border-bottom: 1px solid #f0f0f0;
    white-space: normal;
}

.alkemy-pac-item:last-child {
    border-bottom: 0;
}

.alkemy-pac-item:hover,
.alkemy-pac-item.alkemy-pac-active {
    background: #f3f6f9;
}

.alkemy-pac-item .alkemy-pac-main {
    color: #333;
    font-weight: 600;
}

.alkemy-pac-item .alkemy-pac-secondary {
    color: #777;
    margin-left: 4px;
}

.alkemy-pac-attribution {
    padding: 6px 12px;
    text-align: right;
    font-size: 11px;
    color: #999;
}
