/* Sicherstellen, dass der Footer am Ende der Seite bleibt */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

footer {
    background-color: #f1f1f1;
    /* Hellgrauer Hintergrund */
    border-top: 2px solid #ccc;
    /* Grauer Rand oben */
    padding: 10px;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

body.dark-mode footer {
    background-color: #333;
    /* Dark Mode Hintergrundfarbe */
    color: #fff;
    /* Dark Mode Textfarbe */
}

h1 {
    color: #575555 !important;
    font-weight: bold !important; 
    /* Dunkelgrau */
}

/* Dark Mode Stil für h2 */
body.dark-mode h1 {
    color: #ccc !important;
    font-weight: bold !important; 
    /* Hellgrau im Dark Mode */
}

/* Stil für h2 */
h2 {
    color: #575555 !important;
    /* Dunkelgrau */
}

/* Dark Mode Stil für h2 */
body.dark-mode h2 {
    color: #ccc !important;
    /* Hellgrau im Dark Mode */
}


.bold {
    font-weight: bold; /* Erste Spalte fett */
}


.two-column-grid {
    display: grid;
    grid-template-columns: 85px auto; /* Erste Spalte 15px breit, zweite flexibel */
    gap: 5px;
    align-items: center;
}

.two-column-grid-bold {
    display: grid;
    grid-template-columns: 180px auto; /* Erste Spalte 80px breit, zweite flexibel */
    gap: 5px;
    row-gap: 15px;
    align-items: start;
}


.bold-column {
    font-weight: bold; /* Erste Spalte fett */
}

.normal-column {
    font-weight: normal; /* Zweite Spalte normal */
}




img {
    margin-right: 15px; /* Erhöht den Abstand zwischen den Bildern */
    margin-bottom: 15px;
}

.no-padding-container {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;       /* Stellt sicher, dass der Container linksbündig ist */
    max-width: 500px;     /* Setze eine maximale Breite */
    width: 100%;          /* Setzt die Breite auf 100% des Eltern-Containers, aber begrenzt durch max-width */
}

.no-padding-container-breit {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;       /* Stellt sicher, dass der Container linksbündig ist */
    max-width: 800px;     /* Setze eine maximale Breite */
    width: 100%;          /* Setzt die Breite auf 100% des Eltern-Containers, aber begrenzt durch max-width */
}

.normal-column ul {
    list-style-position: outside;
    padding-left: 1.5em; /* Abstand für das Aufzählungszeichen */
    margin: 0; /* Keine zusätzliche Einrückung */
}

.normal-column ul li {
    margin-left: 0; /* Startet bündig mit dem Listenpunkt */
}
