/*Tabelle CSS*/
/*Tabellenränder + Schatten*/
table {
    border: none; 
    border-spacing: 0; 
    border-bottom: 3px solid #75180c;
    box-shadow: 5px -8px 3px #cccccc;
}
table td {
    border-right: 1px solid #75180c;
}
/*rechte Außenkante weg - bessere Lösung?*/
table th:last-child,
table td:last-child {
    border-right: none; 
}
/*Schrift linksbündig*/
table th,
table td {
    text-align: left;
}
/*Überschrift*/
table th {
    font-weight: bold; 
    font-size: 1.2em;   
    background-color: #75180c;
    color: #ffffff;
    padding-right: 10px;
}
/*Hell-Dunkelgrau-Zeilen*/
table tr:nth-child(odd) {
    background-color: #cccccc;
}
table tr:nth-child(even) {
    background-color: #eeeeee;
}
/*Hoverefffekt*/
table tr:hover {
    background-color: #eb3b24;
    color: #ffffff;
}
/*Anfangsbuchstabe 2.Spalte fett*/
table td:nth-child(2)::first-letter {
    font-weight: bold;
}