/* Styles de base */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f5f7fa;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

h1 {
    color: #333333;
}

/* Styles pour le conteneur de questions */
#quiz-container, #score-container {
    margin-top: 20px;
}

.hidden {
    display: none;
}

/* Styles des boutons */
button {
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Styles pour les options de réponses */
.option {
    cursor: pointer;
    padding: 8px;
    margin: 4px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.option.selected {
    background-color: #f0f0f0;
}
.option.correct {
    background-color: #d4edda;
    color: #155724;
}
.option.incorrect {
    background-color: #f8d7da;
    color: #721c24;
}
#next-button {
    padding: 10px;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
}

