/* Container für die Suchfunktion – sitzt unter der Legende */
.search-container-fixed {
    background: white;
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    width: 200px;
    margin-top: 8px; /* Abstand zur Legende */
    position: relative; /* wichtig: NICHT absolute */
    z-index: 1; /* bleibt unter der Legende, aber über der Karte */
}

/* Eingabefeld */
.search-input {
    width: 100%;
    padding: 4px 6px;
    border: 1px solid #aaa;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Ergebnisliste – wächst nach unten, verschiebt die Legende */
.search-results {
    margin-top: 4px;
    background: white;
    border: 1px solid #aaa;
    border-radius: 3px;
    max-height: 90px; /* ← nur 3 Einträge sichtbar */
    overflow-y: auto;
    display: none;
    position: relative;
    z-index: 2;
}

/* Einzelne Treffer */
.search-results div {
    padding: 4px 6px;
    cursor: pointer;
    font-size: 14px;
}

/* Hover-Effekt */
.search-results div:hover {
    background: #eee;
}
