body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

h1 {
    color: #333;
}


/* Tabellenstil */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table thead {
    background-color: #333; /* Dunkelgrauer Kopf */
    color: #fff; /* Weiße Schrift im Kopf */
}


table th {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd; /* Hellgraue Ränder */
    color: white;
	background-color: #333;
}


table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd; /* Hellgraue Ränder */
}


table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Hellgrauer Hintergrund für jede 2. Zeile */
}

table tbody tr:hover {
    background-color: #f1f1f1; /* Leicht dunkleres Grau beim Hover */
}
