#tableau {
    display: grid;
    grid-template-columns: repeat(8, 70px);
    grid-template-rows: repeat(8, 70px);
    gap: 1px;
}

.cellule {
    width: 70px;
    height: 70px;
    background-color: lightgray;
    border: 1px solid gray;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
}

.cellule.correcte {
    background-color: lightblue;
}

.cellule.incorrecte {
    background-color: lightred;
}

#questions {
    margin-top: 20px;
}

#listeQuestions {
    list-style-type: none;
    padding: 0;
}

#listeQuestions li {
    cursor: pointer;
    margin-bottom: 5px;
}

#listeQuestions li.selectionnee {
    background-color: lightgray;
}