/* Grundlegende Stile für die Seite */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

a:link {
 color: white;
}


a:visited {
 color: white;
}


header {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
}

main {
    padding: 20px;
}

/* Stile für die Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: black;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    color: white;
    font-size: 12px;
}

th {
    background-color: #000000;
    color: white;
}

/* Stile für den Footer */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}