
        /* Menue-Stil */
nav {
        background-color: #333;
        padding: 10px 0;
        text-align: center;
}

nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
}

nav li {
        display: inline-block;
        margin: 0 15px;
}

nav a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        padding: 5px 10px;
        border-radius: 4px;
        transition: background-color 0.3s;
}

nav a:hover {
        background-color: #575757;
}

nav a.active {
        background-color: #0066cc;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

nav .active {
        background-color: #0066cc;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

nav .thispage {
        color: #00FFFF;
        font-size: 18px;

}

/* Responsives Design für den Video-Container */
.video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio (für 1920x1080) */
        height: 0;
        overflow: hidden;
        margin: 20px auto;
        max-width: 800px;
        /* Maximale Breite des Videos */
}

.video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        /* Rahmen entfernen */
}

body {
        font-family: Arial, sans-serif;
                max-width: 1200px;
        width: 100%;
                margin: auto;

           /*text-align: center;*/
        padding: 20px;
}

.footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
}

.footer-section {
        flex: 1;
        min-width: 200px;
        margin-bottom: 20px;
}

.footer-section h3 {
        color: #3498db;
        margin-bottom: 15px;
}

.footer-bottom {
        width: 100%;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #444;
}


/* Tabelle */
.link-table {
         width: 100%;
        max-width: 800px;
        margin: 2rem auto;
        border-collapse: collapse;
}

.link-table th,
.link-table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
}

.link-table caption {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #ddd;
}

.link-table th {
        background-color: #f2f2f2;
}

.link-table tr:hover {
        background-color: #f5f5f5;
}

.link-table a {
        color: #3498db;
        text-decoration: none;
}

.link-table a:hover {
        text-decoration: underline;
}


/* Tabelle */

.song-table th,
.song-table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
}

.song-table th {
        background-color: #f2f2f2;
}

.song-table tr:hover {
        background-color: #f5f5f5;
}

.song-table a {
        color: #3498db;
        text-decoration: none;
}

.song-table a:hover {
        text-decoration: underline;
}

/*
.flex-vertical-table {
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
        max-width: 600px;
}
*/

.table-row {
        display: flex;
}

.table-header {
        flex: 0 0 30%;
        background-color: #f2f2f2;
        padding: 12px;
        border-bottom: 1px solid #ddd;
        font-weight: bold;
}

.table-cell {
        flex: 1;
        padding: 12px;
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
}



.video-cell {
        width: 50%;
        /* Breite der Video-Spalte */
}

video {
        width: 50%;
        max-height: 150px;
        display: block;
}