#game-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}

#game-board {
display: grid;
grid-template-columns: repeat(10, 50px);
grid-template-rows: repeat(10, 50px);
gap: 5px;
}

.cell {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.cell.flagged {
    background-color: #ff7f7f;
}

.cell.revealed {
    background-color: #fff;
    border-color: #000;
}
