




/* Allgemeines Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Hamburger-Button (bereits formatiert) */
.dropbtn {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown-Inhalt (unsichtbar, bis aktiviert) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    
   
    overflow-y: visible; /* Ermöglicht Wachstum des Containers */ /* Scrollbar bei Bedarf */
}

/* Dropdown sichtbar machen beim Hover oder Klick */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Dropdown-Block: Styling */
.dropdownblock {

    overflow: auto; /* Automatische Anpassung der Höhe */
    display: flex;
    justify-content: space-between;
}

/* Kategorie-Titel */
.dropdowncat {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdowncat p {
    margin: 0;
    padding: 0;
}

/* Liste von Menüelementen */
.dropdownlist {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 50%;
    text-align: right;
}

.listItem {
    margin: 15px 0; /* Mehr Abstand zwischen Items */
}

.listItem a {
    text-decoration: none;
    color: #0073e6;
    font-size: 18px; /* Größere Schrift */
    display: block;
    text-align: left;
}

.listItem a:hover {
    text-decoration: underline;
    color: #005bb5;
}
