/* ===== Basis ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #84868c30; /* Hintergrundfarbe der Seite */
}

/* ===== Überschriften ===== */
h2, h3 {
    font-size: 24px;   /* gut lesbare Überschriftengröße */
    margin: 15px 0;
}

/* ===== Tabellen ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    border: 2px solid #000000;  /* Tabellenrahmen */
    table-layout: fixed;         /* Zellenbreite gleichmäßig */
    background-color: #84868c30; /* Tabellen-Hintergrundfarbe */
}

/* Tabellenzellen – kompakter */
td, th {
    padding: 4px 6px;            /* angenehme Zellgröße */
    text-align: left;
    font-size: 16px;             /* gut lesbarer Text */
    line-height: 1.5;            /* angenehmer Zeilenabstand */
    border: 1px solid #000000;   /* Zellrahmen */
    word-wrap: break-word;
    overflow-wrap: break-word;
    background-color: #84868c30; /* Zellen-Hintergrund */
}

/* Optional: maximale Breite pro Spalte */
td:nth-child(1), th:nth-child(1) { width: 13%; }  /* Datum */
td:nth-child(2), th:nth-child(2) { width: 7%; }   /* Uhrzeit / Lehrgang */
td:nth-child(3), th:nth-child(3) { width: 50%; }  /* Termin / Beschreibung */

/* ===== Scrollbare Tabellen auf kleinen Bildschirmen ===== */
@media screen and (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    td, th {
        font-size: 14px;  /* kleinere Schrift auf Mobilgeräten */
    }
}

/* ===== Absätze ===== */
p {
    font-size: 16px;     /* gut lesbarer Fließtext */
    line-height: 1.5;    /* angenehmer Zeilenabstand */
    margin: 6px 0;
}

/* ===== Links im Content ===== */
a {
    color: #093091;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}