
/*--------------- Body-Bereich ---------------*/
body {
 margin: 0px;
 padding: 0px;
 width: 100%;
 height: auto;
 text-align: center;
 background-color: #949494;
}

@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;
}