/* Wetterstations-Schrift */
.rekorde-container,
.rekorde-container * {
    font-family: Arial, sans-serif;
}

/* Container */
.rekorde-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    color: #000000;
}

/* Navigation */
.rekorde-nav {
    text-align: center;
    margin-bottom: 35px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.rekorde-nav a {
    margin: 0 14px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.rekorde-nav a:hover {
    background-color: #f0f0f0;
}

/* Titel */
.rekorde-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    color: #000000;
}

.rekorde-subtitle {
    font-size: 14px;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
}

/* Wrapper für das iframe */
.rekorde-wrapper {
    position: relative;
    width: 100%;
    height: 3350px; /* Desktop-Höhe */
}

/* iframe selbst */
.rekorde-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Kategorien */
.rekorde-section {
    margin-bottom: 40px;
}

.rekorde-section-title {
    font-size: 22px;
    font-weight: bold;
    padding: 10px 12px;
    color: #000000;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}

/* Farben */
.rekorde-section-title.hitze { background-color: #ffcccc; }
.rekorde-section-title.kaelte { background-color: #cce0ff; }
.rekorde-section-title.niederschlag { background-color: #ccecec; }
.rekorde-section-title.sonne { background-color: #fff4b3; }
.rekorde-section-title.schnee { background-color: #e6f2ff; }
.rekorde-section-title.wind { background-color: #e8e8e8; }

/* Zeilen */
.rekorde-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color: #000000;
    text-align: left;
}

.rekorde-label {
    font-weight: bold;
    color: #000000;
}

.rekorde-value {
    text-align: left;
    color: #000000;
}

/* ---------------------------------------------------
   MOBILE
--------------------------------------------------- */
@media (max-width: 600px) {

    /* Grundschrift */
    body {
        font-size: 12px;
    }

    /* Titel */
    .rekorde-title {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .rekorde-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    /* Kategorien */
    .rekorde-section-title {
        font-size: 16px;
        padding: 8px 10px;
        margin-bottom: 10px;
    }

    /* Zeilen */
    .rekorde-row {
        grid-template-columns: 1fr;
        padding: 6px 0;
    }

    .rekorde-value {
        margin-top: 3px;
    }

    /* Navigation */
    .rekorde-nav {
        padding: 8px 0;
        margin-bottom: 20px;
    }

    .rekorde-nav a {
        font-size: 12px;
        margin: 0 6px;
        padding: 3px 4px;
        white-space: nowrap;
    }

    /* iframe-Höhe */
    .rekorde-wrapper {
        height: 4070px; /* Mobile-Höhe */
    }
}
