

/* --------------  CSS Sitemap  ----------------------------- */ 



/* sitemap.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.sitemap-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sitemap-container h1 {
    margin-top: 0;
    color: #0056b3;
}

/* Hierarchie: Einrückung für Unterlisten */
.sitemap-list ul {
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #e0e0e0;
}

/* Listenpunkte anpassen */
.sitemap-list li {
    margin: 10px 0;
    list-style: none;
}

/* Links stylen */
.sitemap-list a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Anfang Einschub p */
.sitemap-list p {
    text-decoration: none;
    color: red;
    font-weight: bold;
}
/* Ende Einschub p */

.sitemap-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Bullet-Points für Unterlisten durch Pfeile ersetzen */
.sitemap-list ul li::before {
    content: "? ";
    color: #888;
    margin-right: 5px;
}