﻿/* Basis-Styles für das Inhaltsverzeichnis */
ul.toc {
    list-style-type: none; /* Entfernt Standard-Bullet-Points */
    padding-left: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

    ul.toc > li {
        margin-bottom: 0.5em; /* Abstand zwischen Hauptüberschriften */
    }

        /* Styles für <h1> - Hauptüberschriften */
        ul.toc > li > strong {
            font-size: 1.2em;
            font-weight: bold;
            color: #333;
        }

    /* Styles für <h2> - Unterüberschriften */
    ul.toc ul {
        margin-top: 0.2em;
        padding-left: 1em; /* Einzug für Unterüberschriften */
        border-left: 2px solid #ddd;
    }

        ul.toc ul li {
            margin-bottom: 0.2em;
            color: #555;
            font-size: 1em;
        }

    /* Links im Inhaltsverzeichnis */
    ul.toc a {
        color: #007bff;
        text-decoration: none;
    }

        ul.toc a:hover {
            text-decoration: underline;
        }
