.quiz-container {
    max-width: 700px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0,0,0,0.2);
    border: 1px solid black;
}

.quiz-question {
    margin-bottom: 20px;
}

.quiz-question img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Style des boutons : 2 colonnes, marron clair, trait noir */
.quiz-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quiz-options button {
    flex: 1 1 calc(50% - 10px);
    max-width: 48%;
    padding: 10px;
    border: 2px solid black;   /* trait noir autour du bouton */
    border-radius: 5px;
    background-color: #d2a679; /* marron clair */
    color: black;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 16px;
    text-align: center;
}

.quiz-options button:hover {
    background-color: #c48f5a;
    transform: scale(1.05);
}

.quiz-result {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
