/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
}

h1, h4 {
    margin: 0;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #2980b9;
}

/* Conteneur des questions */
#cadre1 {
    background-color: white;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Styles des questions */
div[id^="q"] {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

h3 {
    color: #34495e;
}

p {
    margin: 5px 0;
    font-size: 16px;
}

/* Réponses correctes */
p[style*="color: green"] {
    font-weight: bold;
    color: #27ae60 !important;
}

/* Pied de page */
footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
}
