body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    text-align: center;
}

h1 {
    font-size: xx-large;
}

h2 {
    font-size: x-large;
}

/* Navigations-Container */
.Navigation_Container
{
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.Navigation
{
    justify-content: space-around;
    display:flex;
    width: 100%;
    max-width: 1400px;
    font-size: 25px;
    color: black;
    margin: 0 auto;
}
.Navigation a:hover, a:active
{
    color: #1abc9c;
    text-decoration: underline;
}
.Navigation a
{
    color: #343a40;
    text-decoration: none;
    padding: 15px;
  

}

/* Logo */
.Logo_Container
{ 
    width: 200px;
    padding: 0;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.Logo_Container img
{
    width: 100%; 
    height: auto; 
    display: block;
}
/* Menü-Button (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 3.5rem;
    cursor: pointer;
    padding: 24px;
}

/* Mobile Ansicht (unter 1000px) */
@media (max-width: 1000px) {
    .Navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        font-size: 26px;
        background-color: #f8f8f8;
        border-top: 1px solid #ccc;
    }

    .Navigation.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .Navigation_Container {
        margin-top: 20px;
        padding-left: 0;
        margin-left: 0;
        border: none;
    }

    .Logo_Container {
        width: 100%;
        max-width: 150px;
        height: auto;
    }

    .Navigation a {
        padding: 24px;
        border-bottom: 1px solid #ddd;
        text-align: center;
        font-size: 28px;
    }
}

/* Hauptinhaltsbereich */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tabellen-Layout */
.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid black; /* Schwarze Ränder für die Tabelle */
}

table, th, td {
    border: 1px solid black; /* Schwarze Ränder für die Zellen */
}

th, td {
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #1abc9c;
    color: white;
    font-size: 1.2em;
}

.table-image-cell, .table-text-cell, .table-link-cell {
    width: 33.33%;
}

.table-image-cell img, .table-image-cell video {
    max-width: 250px; /* Bildergröße auf max. 250px beschränken */
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
}

.table-text-cell p {
    margin: 0;
    text-align: justify;
}

.table-link-cell {
    text-align: center;
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #2980b9;
}

.link-button.disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Mobile-spezifische Tabellenansicht */
@media (max-width: 768px) {
    table, tbody, tr, td, th {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 20px;
        border: 1px solid black; /* Schwarze Ränder für die Zeilen */
    }

    th {
        display: block;
        text-align: center;
        padding: 10px;
    }

    td {
        border: none;
        border-bottom: 1px solid black; /* Schwarze Ränder für die Zellen */
        text-align: left;
    }

    td:last-child {
        border-bottom: none;
    }
}

.Impressum {
    width: 100%;
    margin-top: 150px;
    background-color: darkgrey;
    color: white;
    text-align: center;
    padding: 20px;
}
