/* Centre le quiz dans la page */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f2f2f2;
}

/* Conteneur principal du quiz */
#quiz-container {
    background-color: #333; /* Fond noir */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    color: white; /* Texte en blanc */
}

/* Question */
#question-text {
    font-size: 18px;
    margin-top: 20px;
    color: white; /* Texte en blanc */
}

/* Options de réponse en deux colonnes */
#options {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes */
    gap: 10px;
    margin-top: 15px;
}

.option {
    padding: 10px;
    background-color: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: #b3b3b3;
}

/* Couleur verte pour la bonne réponse */
.option.correct {
    background-color: #4CAF50;
    color: white;
}

/* Couleur rouge pour la mauvaise réponse */
.option.incorrect {
    background-color: #f44336;
    color: white;
}

/* Bouton pour la question suivante */
#next-question {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Style pour le score */
#score {
    margin-top: 15px;
    font-weight: bold;
    color: white; /* Texte en blanc pour le score */
}
/* Bonne réponse en vert */
.correct-text {
    color: green;
    font-weight: bold;
}
