.osm-dropdown {
    position: absolute;
    z-index: 9999;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    max-height: 280px;
    overflow-y: auto;
    width: 100%;
    margin-top: 2px;
}

.dark .osm-dropdown {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}

.osm-dropdown-item {
    padding: 0.6rem 0.875rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.1s;
}

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

.osm-dropdown-item:hover,
.osm-dropdown-item.highlighted {
    background: #eff6ff;
    color: #1d4ed8;
}

.dark .osm-dropdown-item:hover,
.dark .osm-dropdown-item.highlighted {
    background: #1e3a5f;
    color: #93c5fd;
}

.osm-loading {
    padding: 0.6rem 0.875rem;
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.osm-wrapper { position: relative; }
