.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.controls {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(10, 30px);
    grid-template-rows: repeat(10, 30px);
    gap: 1px;
    background-color: #999;
    border: 1px solid #999;
}

.cell {
    width: 30px;
    height: 30px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.cell:hover {
    background-color: #ddd;
}

.cell.revealed {
    background-color: #eee;
}

.cell.mine {
    background-color: #ff0000;
}

.cell.flagged {
    background-color: yellow;
}

.color-1 { color: blue; }
.color-2 { color: green; }
.color-3 { color: red; }
.color-4 { color: darkblue; }
.color-5 { color: darkred; }
.color-6 { color: teal; }
.color-7 { color: black; }
.color-8 { color: gray; }
