        body {
            color: white;
            background-color: rgb(18, 18, 18);
        }

        th, td {
    border: 1px solid #999;
    /* Fügt 10 Pixel Abstand zwischen Text und Rahmen in allen Richtungen hinzu */
    padding: 10px;          
    text-align: left;
}
        button {
            color: red;
            background-color: rgb(24,119,242);
        }

a:link,         /* Normale, unbesuchte Links */
a:visited,      /* Bereits besuchte Links (das lila) */
a:hover,        /* Links beim Überfahren mit der Maus (optional) */
a:active {      /* Links beim Klicken (optional) */
    color: white !important; /* Setzt die Textfarbe auf Weiß */
    text-decoration: none;   /* Optional: Entfernt die Unterstreichung */
}