/* ====== Grundlayout ====== */
.handbook-container {
    display: flex;
    height: 85vh;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #222;
}

/* ====== Navigation links ====== */
.handbook-nav {
    width: 260px;
    background: #344955;
    border-right: 1px solid #dcdcdc;
    overflow-y: auto;
}

.handbook-nav ul {
    list-style: none; 
    margin: 0;
    padding: 10px 0;
}

.handbook-nav li {
    margin: 0;
    padding: 0;
}

.handbook-nav li a {
    display: block;
    padding: 6px 12px;
    text-decoration: none !important; /* Entfernt Unterstreichung */
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2; /* Erhöht für bessere Lesbarkeit */
}

/* Einrückung für Unterkapitel */
.handbook-nav li ul li a {
    padding-left: 20px; /* Etwas mehr Einrückung für bessere Optik */
    font-size: 12.5px;
    font-family: 'Roboto', sans-serif;
    text-decoration: none !important;
}

/* Hover / Active - Kein Hintergrund mehr */
.handbook-nav li a:hover,
.handbook-nav li a.active {
    background: transparent !important; /* Entfernt die graue Box */
    font-weight: bold;
    color: #ffffff;
    text-decoration: none !important;
}

/* ====== Inhaltsbereich rechts ====== */
.handbook-content {
    flex: 1;
    padding: 25px 40px;
    overflow-y: auto; /* Scrollbar für Text */
    background: #ffffff;
    line-height: 1.6;
}

/* Links im Inhaltsbereich ebenfalls ohne Unterstreichung (optional) */
.handbook-content a {
    text-decoration: none !important;
}

/* Typografie wie Handbuch */
.handbook-content h1 { font-size: 22px; margin-top: 0; }
.handbook-content h2 { font-size: 18px; margin-top: 1.6em; }
.handbook-content h3 { font-size: 15px; margin-top: 1.4em; }
.handbook-content p  { margin: 0.8em 0; }

/* Listen */
.handbook-content ul,
.handbook-content ol {
    margin-left: 20px;
}

/* Bilder responsiv */
.handbook-content img {
    max-width: 100%;
    border: 1px solid #ccc;
    margin: 15px 0;
}

/* Hinweisbox */
.handbook-content .note {
    border-left: 4px solid #999;
    background: #f6f6f6;
    padding: 10px 15px;
    margin: 20px 0;
    font-size: 13px;
}