.pac-container {
    z-index: 10050;
    overflow: hidden;
    margin-top: 4px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    font-family: inherit;
    box-sizing: border-box;
}

.pac-item {
    padding: 10px 12px;
    border-top: 1px solid var(--border-soft);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background: var(--primary-light);
}

.pac-item-query {
    display: block;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: var(--weight-medium);
    line-height: 1.3;
    margin-bottom: 2px;
}

.pac-matched {
    font-weight: var(--weight-bold);
}

.pac-icon,
.pac-logo::after {
    display: none;
}

@media (max-width: 520px) {
    .pac-item {
        padding: 9px 11px;
        font-size: 13px;
        line-height: 1.35;
    }

    .pac-item-query {
        font-size: 13px;
    }
}
