/* ─── Dropdown Mapbox autocomplete ─────────────────────────────────────── */
.apf-mapbox-dropdown {
    position: absolute;
    z-index: 99999;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
}

.apf-mapbox-dropdown__item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f2f2f2;
    line-height: 1.4;
    color: #333;
    transition: background 0.15s ease;
}

.apf-mapbox-dropdown__item:last-child {
    border-bottom: none;
}

.apf-mapbox-dropdown__item:hover {
    background: #f5f5f5;
}
