
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-color: #f0f2f5; */
    min-height: 100vh;
    margin: 0;
}

#app {
    width: 100%;
}

/* Gestion des écrans */
.ecran {
    display: none;
}
.ecran-actif {
    display: block;
}

/* Spécifique au jeu */
img {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.propositions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

/* Couleurs des réponses */
/* .btn-correct {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
}

.btn-incorrect {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
} */

/* Tableau */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
th,
td {
    padding: 0.75rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.btn-grey {
       background: #c3c3c3;
}