/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    /* background-color: #4CAF50; */
	background-color: #454545;
    color: white;
    padding: 1em;
    display: flex;
    justify-content: space-between; /* Elemente im Header verteilen */
    align-items: center; /* Vertikale Zentrierung */
}

header h1 {
    margin: 0;
    flex-grow: 1; /* Lässt die Überschrift mehr Platz einnehmen */
    text-align: center; /* Zentriert die Schrift innerhalb ihres Bereichs */
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
	display: none;
}

.navigation {
    background-color: #333;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navigation ul li {
    margin: 0;
}

.navigation ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    display: block;
}

.navigation ul li a:hover {
    background-color: #575757;
}

.breadcrumbs {
    font-size: 16px;
    padding: 10px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Für kleinere Bildschirme */
    list-style: none;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

/* Keine separaten Pseudoelemente mehr an den Links */
.breadcrumbs li a {
    text-decoration: none;
    color: #4CAF50;
    margin-right: 10px;
    position: relative;
}

/* Separator nur an li, die nicht das letzte Element sind */
.breadcrumbs li:not(:last-child)::after {
    content: " › ";
    color: #333;
    font-weight: bold;
    margin-left: 2px;
	margin-right: 2px;
}

/* Für den aktuell aktiven Breadcrumb */
.breadcrumbs .current {
    font-weight: bold;
    color: #575757;
}

main {
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Mobile Optimierung */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Menü-Button sichtbar machen */
    }

    .navigation {
        display: none; /* Navigation standardmäßig ausblenden */
    }

    .navigation.active {
        display: block; /* Navigation sichtbar bei Aktivierung */
    }

    .navigation ul {
        flex-direction: column; /* Navigation vertikal für kleinere Bildschirme */
        text-align: center;
    }

    main {
        padding: 15px;
    }

    footer {
        font-size: 14px;
        padding: 15px 10px;
    }
}

/* Sitemap*/

.sitemap-list {
	list-style-type: none;
	padding: 0;
}
.sitemap-list li {
	margin: 5px 0;
}
.sitemap-list a {
	text-decoration: none;
	color: #575757;
	font-weight: bold;
}

