/* Globale Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: rgb(255, 255, 153); /* Hintergrundfarbe */
    position: relative;
    padding-top: 20px; /* Freiraum oben */
    padding-bottom: 20px; /* Freiraum unten */
}

/* Hintergrundbild */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bilder/hintergrundbild2.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Banner */
.banner {
    width: 100%;
    height: auto;
    max-width: 864px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
}

/* Überschriften */
h1 {
    color: red; /* Rot */
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center; /* Zentrierte Überschrift */
}

/* Textstile */
p {
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: justify;
}

.infotext-small {
    font-size: 0.9rem;
    color: #666; /* Grauer Text für kleinere Schrift */
    margin-bottom: 20px;
}

/* Links */
a {
    color: #4d85a3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #fbdb05;
}

/* Hauptkarte
.main-map {
    width: 100%;
    height: 600px;
    border: none;
    margin: 20px auto;
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
} */

.karte {
    overflow: scroll;
    height: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
/*    .main-map { */
.karte {
    height: 300px; /* Reduzierte Höhe für kleinere Bildschirme */
    }
}

/* Navigation */
.navigation {
    margin-top: 20px;
    margin-bottom: 20px; /* Zusätzlicher Abstand nach unten */
}

/* Rot formatierter Text */
.red-text {
    color: red;
    font-weight: bold;
}

/* Merksätze */
.merksaetze {
    list-style-type: disc; /* Aufzählungszeichen */
    margin-left: 40px; /* Einzug für die Liste */
    padding: 10px 0;
}

.merksaetze li {
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
    line-height: 1.6; /* Zeilenabstand */
    text-align: left; /* Linksbündige Ausrichtung */
}

/* Tabelle */
.tour-table {
    width: 100%; /* Tabelle nimmt die gesamte Breite des Containers ein */
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 0.9rem;
    text-align: left; /* Standard-Ausrichtung der Zellen */
}

.tour-table th,
.tour-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.tour-table th {
    background-color: #4d85a3;
    color: white;
    font-weight: bold;
    text-align: center; /* Überschriften zentriert */
}

/* Gerade Zeilen (weiß) */
.tour-table tr:nth-child(even) {
    background-color: #ffffff; /* Weiß */
}

/* Ungerade Zeilen (hellgrau) */
.tour-table tr:nth-child(odd) {
    background-color: #f9f9f9; /* Hellgrau */
}

/* Hover-Effekt */
.tour-table tr:hover {
    background-color: #f1f1f1; /* Hellgrauer Hover-Effekt */
}

/* Container */
.container {
    max-width: 864px; /* Breite des Containers begrenzt auf die Banner-Breite */
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 153, 0.9); /* Transparente Box über dem Hintergrund */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}