body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 20px;
}

#minesweeper {
  display: inline-grid;
  grid-template-columns: repeat(100, 20px);
  grid-gap: 1px;
}

.cell {
  width: 20px;
  height: 20px;
  background-color: #ddd;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  cursor: pointer;
}

.cell.mine {
  background-color: red;
}

.cell.revealed {
  background-color: #bbb;
  cursor: default;
}

.cell.flagged {
  background-color: yellow;  /* Optional: Change background color for flagged cells */
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 20px;
}

#minesweeper {
  display: inline-grid;
  grid-template-columns: repeat(100, 20px);
  grid-gap: 1px;
}

.cell {
  width: 20px;
  height: 20px;
  background-color: #ddd;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  cursor: pointer;
}

.cell.mine {
  background-color: red;
}

.cell.revealed {
  background-color: #bbb;
  cursor: default;
}

.cell.flagged {
  background-color: yellow;  /* Optional: Change background color for flagged cells */
}
