/* Grundlegende Stileinstellungen für den Körper der Seite */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #EEE0E5;	
}

.content img {
    max-width: 50%;
    height: auto;
}

/* Stil für die Navigationsleiste */
.navbar {
    background-color: #9A32CD;
    overflow: hidden;
}

/* Stil für die Links in der Navigationsleiste */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Stil für die Links, wenn man mit der Maus darüber fährt */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Stil für die Dropdown-Menüs */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Stil für die Dropdown-Buttons */
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

/* Stil für den Inhalt der Dropdown-Menüs */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Stil für die Links im Dropdown-Menü */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Stil für die Links im Dropdown-Menü, wenn man mit der Maus darüber fährt */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Anzeige der Dropdown-Inhalte bei Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Stil für den Inhalt der Seite */
.content {
    padding: 20px;
}



/* Stil für Unter-Untermenü */
.dropdown-submenu {
    position: relative;
}

/* Inhalt des Unter-Untermenüs */
.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Anzeigen des Unter-Untermenüs beim Hover */
.dropdown-submenu:hover .dropdown-submenu-content {
    display: block;
}

/* Stil für Unter-Untermenü-Button */
.dropdown-submenu .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 12px 16px;
    background-color: #f9f9f9;
    font-family: inherit;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* Hover-Effekt für das Unter-Untermenü */
.dropdown-submenu .dropbtn:hover {
    background-color: #ddd;
}
