/* Basic styling for the body to center content */
body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid layout for the minesweeper board */
.grid {
    display: grid;
    padding: 10px;
    background-color: #ccc;
    border: 2px solid #999;
    margin-bottom: 10px;
}

/* Default cell appearance */
.cell {
    width: 30px;
    height: 30px;
    border: 1px solid #999;
    background-color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    user-select: none;
    box-shadow: inset 1px 1px 2px white, inset -1px -1px 2px #888;
}

/* Appearance when user clicks the cell */
.cell:active {
    box-shadow: inset -1px -1px 2px white, inset 1px 1px 2px #888;
}

/* Revealed cell style */
.revealed {
    background-color: #ddd;
    cursor: default;
    box-shadow: none;
    border: 1px solid #ccc;
}

/* Mine cell styling */
.mine {
    background-color: red;
    color: black;
}

/* Flagged cell with flag emoji */
.flagged::after {
    content: '🚩';
    font-size: 18px;
}

/* Color coding for number of adjacent mines */
.c1 { color: blue; }
.c2 { color: green; }
.c3 { color: red; }
.c4 { color: purple; }
.c5 { color: maroon; }
.c6 { color: turquoise; }
.c7 { color: black; }
.c8 { color: gray; }

/* Status display styling */
#status {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Button styling */
button {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 1em;
}

/* Instruction text styling */
#instructions {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}
