body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    /* Neutraler Darkmode */
    background-color: #121212;
    color: #f5f5f5;
    text-align: left;
}

h1 {
    font-size: 18px;
    font-weight: bolder;
    color: #ffffff;
    /* Dezente graue Linie */
    border-bottom: 1px solid #444444;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

h2 {
    font-size: 16px;
    font-weight: bold;
    color: #e0e0e0; /* Weiß/Hellgrau statt Gold */
}

/* Tabellenzeilen */
tr {
    border-bottom: 1px solid #333333;
    transition: background-color 0.1s;
}

/* Hover-Effekt: Hellgrau */
tr:hover td {
    background-color: #2a2a2a;
}

td {
    font-size: 12px;
    font-weight: normal;
    text-align: left;
    padding: 8px 10px;
    color: #dddddd; /* Leicht abgetöntes Weiß für Fließtext */
}

/* Tabellenkopf */
th {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 8px 10px;
    /* Rahmen: Neutrales Grau */
    border-top: 1px solid #444444;
    border-bottom: 1px solid #444444;
    /* Hintergrund: Etwas heller als Body */
    background-color: #1e1e1e;
    color: #ffffff; /* Weiß für Header */
}

/* Links: Neutrales Hellblau */
a, a.btn-default {
    font-weight: bold;
    color: #90CAF9;
    text-decoration: underline;
}

a:hover, a.btn-default:hover {
    color: #ffffff;
    text-decoration: none;
}

.inaktiv {
    color: #777777;
}

/* Wettkampf-Label: Neutral */
.wk {
    background-color: #333333;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid #444444;
}

/* Panels: Neutral */
.panel_results {
    border: 1px solid #333333;
    background-color: #1e1e1e;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 4px;
}

.panel_clubs {
    border: 1px solid #333333;
    background-color: #1e1e1e;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 4px;
}