ul, il {
    list-style: none;    /* Punkte oder Zahlen entfernen */
    padding-left: 0;     /* Einrückung entfernen */
    margin: 0;           /* optional Abstand oben/unten */
}
/* ===== Mobile Tabellen ===== */
@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;
}

/* ===== Aufzählungen ohne Punkte ===== */
ul, il {
    list-style: none;    /* Punkte oder Zahlen entfernen */
    padding-left: 0;     /* Einrückung entfernen */
    margin: 0;           /* optional Abstand oben/unten */
}