/* Globale Stile */
/** {
    box-sizing: border-box;
    font-family: 'Verdana', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
}*/
.spacer {
  margin: 70px;
}
.header img {
  width: 65%;
}
strong {
  font-weight: bold;
}
small {
  font-size: 75%;
}
body {
    background-color: #353533;
    color: whitesmoke;
    margin-bottom: 80px;
    box-sizing: border-box;
    font-family: 'Verdana', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}
/* Zentriert den Inhalt für alle Seiten */
main#content {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px; /* Optional: Begrenze die Breite */
    padding: 20px;
}

/* Hauptkontainer */
main {
    background-color: #353533;
    border-radius: 30px;
    width: 90%;
    /*max-width: 1200px;*/
    padding: 5px 20px 20px 20px;
    margin: 0px 10px 30px 10px;
    min-height: 400px;
}

/* Überschriften */
h2 {
    font-size: 1.5em;
    color: whitesmoke;
    text-align: center;
    margin-bottom: 20px;
}
.startseite {
    font-size: 1.5em;
    color: whitesmoke;
    text-align: center;
    margin-bottom: 0;
}

/* Login */
form {
    border: none;
    width: 250px;
    background-color: #353533;
    margin: 0 auto;
    padding: 0 1em;
}

form label {
    display: block;
    font-size: 1.2em;
    color: whitesmoke;
    padding-left: 3px;
}

input,
textarea
{
    width: 100%;
    font-size: 1.1em;
    padding: 4px;
    font-family: inherit;
    font-weight: lighter;
    border:3px solid #333;
    outline: none;
    border-radius: 0.3em;
    margin-bottom: 10px;
}

input:focus,
textarea:focus {
    border:3px solid #ebb000;
}

button[type=submit] {
    background-color: #ebb000;
    cursor: pointer;
    width: 14em;
    padding: .3em 0;
    border-radius: 0.7em;
    margin-top: 10px;
    color: #000;
}

button[type=submit]:hover {
    background-color: #FFD700;
    box-shadow: 2px 2px 2px grey;
}


/* Container für Monatstabellen */
.month-tables {
    display: flex;
    flex-wrap: wrap;
    gap: 0px; /* Erhöhter Abstand zwischen Monatstabellen */
    justify-content: center;
}

/* Einzelne Monatstabelle */
.month-table {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    border-right: 1px solid #555; /* Vertikaler Rahmen zwischen Tabellen */
    padding: 0 20px; /* Zusätzlicher Innenabstand */
}

.month-table:last-child {
    border-right: none; /* Kein Rahmen für die letzte Tabelle */
}

/* Zentrierte Monatsüberschrift */
.month-table h3 {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: whitesmoke;
}

/* Event-Tabelle */
.event-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    color: whitesmoke;
}

.event-table th, .event-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #555;
}

.event-table td {
    vertical-align: middle;
    border-right: 1px solid #ccc;
}
.event-table td:last-child {
    vertical-align: middle;
    border-right: 0px solid #ccc;
}

.event-table td div {
    margin-bottom: 10px;
}

.small {
  font-size: 12px;
}
.big {
  font-size: 16px;
  font-weight: bold;
}
.date {
  font-size: 20px;
  font-weight: bold;
}
.name {
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
}
.cursiv {
  font-size: 10px;
  /*font-style: italic;*/
  vertical-align: bottom;
}

.event-table a {
    color: #ebb000;
    text-decoration: none;
}

.event-table a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-top: 1px solid #555;
}

/* Links */
a, a:visited {
    color: #ebb000;
    text-decoration: none;
}

a:hover, a:active {
    color: #FFD700;
    text-decoration: underline;
}

.sponsors {
    background-color: #fff;
    height: 50px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}
.sponsors img {
    height: 30px;
    vertical-align: middle;
    margin: 10px 50px 0 0;
}
/*.sponsors a img:hover {
    -webkit-filter: grayscale(0.7) drop-shadow(2px 2px 5px #000);filter: grayscale(0.7) drop-shadow(2px 2px 5px #000)
}*/
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

a img:hover {
    -webkit-filter: grayscale(0.7) drop-shadow(2px 2px 5px #000);filter: grayscale(0.7) drop-shadow(2px 2px 5px #000)
}
.tickets a {
  font-size: 13px;
  font-weight: bold;
}
.tickets a:hover {
  text-decoration-color: #fff;
  /*color: #cfbc8c;*/
  text-shadow: 0px 0px 5px #bdbdbd;
}


@media (max-width: 900px) {
    .month-tables {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    .month-table {
        width: 100%;
        max-width: none;
        border-right: none; /* Kein Rahmen auf Mobilgeräten */
        padding-right: 0;
    }
    .sponsors {
        background-color: #fff;
        height: 50px;
        vertical-align: middle;
        display: flex;
        justify-content: center;
    }
    .sponsors img {
        height: 25px;
        width: 100%;
        vertical-align: middle;
        margin: 12px 20px 0 0;
    }
    /*.sponsors a img:hover {
        -webkit-filter: grayscale(0.7) drop-shadow(2px 2px 5px #000);filter: grayscale(0.7) drop-shadow(2px 2px 5px #000)
    }*/
    .helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
}
@media (max-width: 765px) {
    .header img {
      width: 100%;
    }
    .month-tables {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    .month-table {
        width: 100%;
        max-width: none;
        border-right: none; /* Kein Rahmen auf Mobilgeräten */
        padding-right: 0;
    }
    .sponsors {
        background-color: #fff;
        /*height: 50px;*/
        width: 100%;
        vertical-align: middle;
        display: flex;
        justify-content: center;
    }
    .sponsors img {
        height: 25px;
        width: 100%;
        vertical-align: middle;
        margin: 12px 20px 0 0;
    }
    .sponsors a img:hover {
        -webkit-filter: grayscale(0.7) drop-shadow(2px 2px 5px #000);filter: grayscale(0.7) drop-shadow(2px 2px 5px #000)
    }
    .helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 30px;
        width: 100%;
        background-color: #333;
        color: #fff;
        text-align: center;
        font-size: 14px;
        padding: 5px;
    }
}

.datenschutz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    text-align: center;
}
.datenschutz-container h2, .datenschutz-container h3 {
    color: #fff;
}
.datenschutz-container a {
    color: #ebb000;
    text-decoration: underline;
}
.datenschutz-container a:hover {
    color: #000;
}
.datenschutz-container ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .datenschutz-container {
        padding: 10px;
    }
}
