/* Quiz.css - Quiz-spezifische Stile */

/* Quiz Container */
#quiz-container {
    text-align: center;
    padding: 2rem;
}

/* Antwort-Grid */
.antworten {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

/* Antwort-Buttons */
.antwort-button {
    padding: 1.2rem;
    font-size: 1.2rem;
    border-radius: 10px;
    background-color: #ffffff;
    color: #2c3e50;
    border: 3px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
}

.antwort-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.antwort-button:active {
    transform: scale(0.98);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Feedback-Nachrichten */
.rueckmeldung {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.rueckmeldung.richtig {
    background-color: #abebc6;
    color: #196f3d;
}

.rueckmeldung.falsch {
    background-color: #f5b7b1;
    color: #943126;
}

/* Quiz-Ergebnis */
.ergebnis {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    text-align: center;
}

/* Quiz-Überschriften */
#quiz-container h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Quiz Animationen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.antworten, .rueckmeldung, .ergebnis {
    animation: fadeIn 0.5s ease-out;
}
