/* wa2.css v2.0 – Spezifische Styles für die WA-Detailseite (wa2.php)
   Ergänzt block.css; enthält nur Detail-Styles, keine Block-Grundstyles.
*/

/* Dynamische Schriftart und Bandfarben */
body {
    font-family: var(--font-family, 'Ubuntu', Arial, sans-serif);
}

.band-physical {
    color: var(--band-physical-color, #000000);
    font-weight: 500;
}

.band-virtual {
    color: var(--band-virtual-color, #2980b9);
    font-weight: 500;
}

/* Links für Dokument-ID und Titel */
.doc-link,
.doc-link:visited {
    color: #222;
    text-decoration: none;
}
.doc-link:hover {
    text-decoration: underline;
}

/* Flaggen */
.flag {
    font-size: 1.4em;
    margin-right: 0.3em;
}

/* Überschriften für YAML / Kapitel */
.detail-heading {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

/* Log-Ausgabe */
.log {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
}

/* Box für Kapitel 1 */
.chapter-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 4px;
}

/* Optionale Zusatzformatierung für Tabellen mit YAML-Daten */
.yaml-table td:first-child {
    width: 30%;
    background: #f5f5f5;
    font-weight: 600;
}