/* Styles pour le conteneur principal */
body {
	background-color: #000000; /* Blanc */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Styles pour la palette de couleurs */
.palette {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.color {
    width: 30px;
    height: 30px;
    margin: 5px;
    cursor: pointer;
    border: 1px solid #fff;
}

/* Styles pour la grille et les cellules */
.grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(48, 15px);
    gap: 1px;
    border: 1px solid #fff;
}

.cell {
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    cursor: pointer;
}
