* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
} */

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Stapelt Header und Kalender vertikal */
    align-items: center;
    /* Zentriert horizontal */
}


header {
    width: 100%;
    background-color: #333;
    /* Beispiel: dunkler Hintergrund */
    color: white;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    flex-wrap: wrap; */
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav {
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 5px 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f0a500;
}

/* Stil für den Text "Termin erfassen" */
.highlight {
    color: red;
    /* Textfarbe auf Rot setzen */
    font-weight: bold;
    /* Optional: Fett darstellen */
}

/* Stil für den hervorgehobenen Link, wenn auf der Seite "tagtermine.php" */
.highlight a {
    font-size: 18px;
    /* Größe anpassen nach Bedarf */
    font-weight: bold;
    /* Optional: Fett darstellen */
    color: #ff6600;
    /* Optional: Farbe anpassen */
}



@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}