/* 90s Quiz */
.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    font-family: Arial, sans-serif;
    text-align: center;
}

.quiz-question {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option-row {
    display: flex;
    align-items: stretch; /* Sorgt dafür, dass die Elemente gleich hoch sind */
    justify-content: flex-start;
    gap: 10px;
}

.quiz-option-letter {
    flex-shrink: 0;
    width: 42px; /* Breite bleibt konstant */
    height: auto; /* Höhe passt sich automatisch an */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cc7123; /* Farbe für Buchstaben-Kasten */
    color: #fff;
    font-weight: bold;
    border-radius: 5px;

}

.quiz-option-text {
    flex-grow: 1;
    padding: 10px 5px;
    font-size: 1em;
    font-weight: bold;
    text-align: left;
    border: 2px solid #cc2376;
    border-radius: 5px;
    background-color: #fff;
    color: #cc2376;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    word-wrap: break-word;
}

.quiz-option-text:hover {
    background-color: #cc2376; /* Hintergrund farbig beim Hover */
    color: #fff; /* Schriftfarbe weiß beim Hover */
}

/* Media Query für mobile Geräte */
@media (max-width: 600px) {
    .quiz-container {
        padding: 10px;
        transform: scale(0.8);
    }

    .quiz-question {
        font-size: 1em;
    }

    .quiz-option-letter {
        width: 36px; /* Breite für kleinere Geräte angepasst */
    }

    .quiz-option-text {
        padding: 8px 5px;
        font-size: 0.9em;
    }
}

@media (min-width: 601px) {
    .quiz-container {
        transform: scale(0.9);
    }
}

#next-question {
    display: none; /* Standardmäßig ausgeblendet */
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #000; /* Schwarzer Hintergrund */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px auto 0px auto; /* Zentriert den Button */
    display: block;
    text-align: center;
}

#next-question:hover {
    background-color: #333; /* Dunkleres Schwarz beim Hover */
    transform: scale(1.05);
}

#next-question:active {
    background-color: #555; /* Noch dunkler beim Klicken */
    transform: scale(0.95);
}  transform: scale(0.95);
}
