/* ==============================================
   OSM ADDRESS AUTOCOMPLETE (NEO-BRUTALISM)
   ============================================== */

.osm-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.osm-autocomplete-dropdown {
    position: fixed;
    /* Per JS positioniert (top, left, width) */
    background: var(--bg-card);
    border: 2px solid var(--border-color-strong);
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100005;
    /* Über Modal-Overlay (100000) */
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    box-shadow: var(--shadow-hard);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.osm-autocomplete-dropdown li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-card);
    transition: all var(--transition-fast);
}

.osm-autocomplete-dropdown li:last-child {
    border-bottom: none;
}

.osm-autocomplete-dropdown li:hover {
    background: var(--color-yellow);
    color: var(--text-on-bright);
    font-weight: 600;
}
