/* Allgm. seitengestaltung*/
body {
    font-size: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Kopfbereich*/
header {
    background-color: #e67e22;
    color: white;
    text-align: center;
    padding: 30px;
}

/*Überschriften */
h1, h2 {
    font-family: 'Trebuchet MS', sans-serif;
}

/* Hauptbereich */
section {
    background-color: white;
    margin: 20px auto;
    padding: 15px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1)
}

/* Tabellenformatierung */
table {
    width: 100%;
    border-collapse: collapse;

}

th, td {
    border-bottom: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    text-align: left;

}

