.suche-container {
    position: relative;
    width: 100%;
}

#search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: left;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 600px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.result-item {
    #als Listenelement darstellen
    display: list-item; /* Macht das div zu einem Listenelement */
    list-style-type: disc; /* Setzt den Stil (z.B. circle, square, disc) */
    margin-left: 40px; /* Erzeugt Platz für das Symbol */
    # Ende der Listendefinition
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.result-item a {

    text-decoration: none;
    color: #0073aa;
    display: block;
    # text-transform: capitalize; # Jedes Wort beginnt mit Großbuchstaben
}

.result-item:hover {
    background-color: #f9f9f9;
}
