/* style.css - Moderne, dunkle Theme, responsiv */
/* Ähnlich wie rezultati.com: Gruppenlisten, Tabs usw. */

body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
}

.header {
    background: #0056b3;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 24px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 10px;
}

nav a {
    color: #fff;
}

.such-formular {
    display: flex;
}

.container {
    display: grid;
    grid-template-columns: 200px auto 200px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sidebar-links, .sidebar-rechts {
    background: #252525;
    padding: 15px;
    border-radius: 5px;
}

.hauptinhalt {
    background: #252525;
    padding: 15px;
    border-radius: 5px;
}

.tabs {
    display: flex;
}

.tab-knopf {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.tab-knopf.active {
    background: #0056b3;
}

.spiel-gruppen h2 {
    background: #333;
    padding: 5px;
}

.spiel-karte {
    background: #333;
    padding: 10px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}

.spiel-karte img {
    width: 30px;
}

.ergebnis {
    font-weight: bold;
}

.liga-tabelle {
    width: 100%;
    border-collapse: collapse;
}

.liga-tabelle th, .liga-tabelle td {
    border: 1px solid #444;
    padding: 8px;
}

.footer {
    background: #0056b3;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}