/* Grundlegende Stile für die gesamte Seite */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

header, nav, main, section, footer {
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
}

/* Spezifische Farben und Stile für jedes Layout-Tag */
header {
    background-color: #0077b6;
    color: white;
}

nav {
    background-color: #0096c7;
    color: white;
}

main {
    background-color: #edf6f9;
}

section {
    background-color: #caf0f8;
    border: 2px solid #0077b6;
}

footer {
    background-color: #023e8a;
    color: white;
}

/* Stile für Überschriften und Links */
h1, h2 {
    padding: 4px;
    border-bottom: 1px solid gray;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Stile für Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #023e8a;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #00b4d8;
}

/* Stile für Buttons */
button {
    background-color: #00b4d8;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0077b6;
}
