table {
    border-collapse: collapse;
    width: 90%;               /* 90% der verfügbaren Fläche */
    margin: 0 auto;           /* Zentriert die Tabelle horizontal */
    font-family: sans-serif;
    font-size: 14pt;
}

/* Allgemeine Einstellungen für alle Zellen */
th, td {
    border: 1px solid black;
    padding: 10px;
    vertical-align: top;      /* Text wird oben in der Zelle angeschlagen */
    text-align: left;
}

/* Formatierung der ersten Spalte */
td:first-child, th:first-child {
    background-color: #add8e6;
    font-weight: bold;
}

/* Formatierung der zweiten Spalte (zur Sicherheit explizit auf normal) */
td:last-child, th:last-child {
    background-color: transparent;
    font-weight: normal;
}
