html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
li, h1, h2, h3 {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}
h1,a {
    color: rgb(118, 38, 6);
}
a {
    text-decoration: underline;
}
h1 {
    font-size: xx-large;
}
h2 {
    font-size: x-large;
}
h3 {
    font-size: larger;
}
.content {
    flex: 1;
    font-size: large;
}
.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px 0;
}
.header-logo {
    width: 100%;
    text-align: center;
    background-color: #F8F7DA;
}
.header-logo img {
    max-height: 130px;
    /* width: 60%; */
    object-fit: cover;
}
.navbar {
    background-color: #F8F7DA; /* Ensure same background color */
    font-size: x-large;
    text-decoration: none !important;
}
.navbar-nav {
    width: 100%;
    justify-content: center;
    text-decoration: none !important;
}
.nav-link {
    text-decoration: none !important;
}
.container.content {
    max-width: 98%;
    text-align: justify;
}
.left {
    text-align: left;
}
.navbar-collapse .header-logo {
    display: none;
}
.image-caption {
    font-size: medium;
    font-style: italic;
    text-align: center;
}
.video {
    aspect-ratio: 16 / 9;
    width: 100%;
}
.past{
    color: darkgrey;
}
.accordion-button {
    background-color: #f8f9fa; /* Helle Hintergrundfarbe */
    color: #343a40; /* Dunkle Textfarbe */
    border: 1px solid #dee2e6; /* Sanfter Rand */
    border-radius: 0.25rem; /* Abgerundete Ecken */
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.accordion-button:hover {
    background-color: #e2e6ea; /* Hintergrundfarbe beim Hover */
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef; /* Hintergrundfarbe wenn ausgeklappt */
}

.accordion-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #343a40; /* Farbe des Pfeils */
    margin-left: auto; /* Pfeil nach rechts schieben */
    transition: transform 0.3s ease; /* Animation für Rotation */
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg); /* Pfeil nach unten drehen, wenn ausgeklappt */
}

.accordion-body {
    border-top: 1px solid #dee2e6; /* Trennlinie zwischen Titel und Inhalt */
    padding: 1rem; /* Mehr Padding im Inhalt */
    background-color: #ffffff; /* Hintergrundfarbe des Inhalts */
}
@media (max-width: 992px) {
    .header-logo img {
    max-height: 80px;
    object-fit: cover;
}
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #F8F7DA;
        z-index: 9999;
        overflow-y: auto;
        transition: none !important;
    }
    .navbar-collapse.show .header-logo {
        display: block;
    }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 80px; /* Space for logo */
    }
    .navbar-nav .nav-item {
        /* margin: 10px 0; */
        text-align: center;
    }
    .navbar-toggler {
        z-index: 10000;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #F8F7DA;
        padding: 5px 10px;
        border: none;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: none !important;
    }
    .navbar-toggler .navbar-toggler-icon {
        display: block;
    }
    .navbar-toggler .menu-text {
        font-size: small;
    }
    .container.content {
        text-align: left;
    }
}