/*
  Team 01 – Thema: Umweltschutz
  Autoren: Marouane Oubrayme, Hüseyin Bildikari, Moritz Sieger
  Aufgabenbereich: Tabellen-Styling
*/

/* Basis-Styling für die Tabelle */
table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;

/* Für EA2 die Deckkraft geändert */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
}

/* Tabellenkopf - dunkelrot, weiß, fett, linksbündig */
thead th {
    background-color: maroon;
    color: white;
    font-weight: bold;
    text-align: left;
    padding: 12px;
    font-size: 1.1em;
}

/* Dunkelrote Ränder zwischen Kopfzellen */
thead th {
    border-right: 2px solid maroon;
}

thead th:last-child {
    border-right: none;
}

/* Tabellenkörper - Zebra-Effekt */
tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}

tbody tr:nth-child(even) {
    background-color: #d3d3d3;
}

/* Zellen im Body */
tbody td {
    padding: 10px;
    color: black;
    border-right: 2px solid maroon;
    border-bottom: 2px solid maroon;
}

tbody td:last-child {
    border-right: none;
}

/* Letzte Zeile - breiterer unterer Rand */
tbody tr:last-child td {
    border-bottom: 4px solid maroon;
}

/* Hover-Effekt - hellrot mit weißer Schrift */
tbody tr:hover {
    background-color: #ff6b6b;
}

tbody tr:hover td {
    color: white;
}

/* Anfangsbuchstaben in der zweiten Spalte fett */
tbody td:nth-child(2)::first-letter {
    font-weight: bold;
}