#game-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#game-board {
  display: grid;
  grid-template-columns: repeat(10, 30px);
  grid-template-rows: repeat(10, 30px);
  gap: 2px;
}

.cell {
  width: 30px;
  height: 30px;
  background-color: #ccc;
  border: 1px solid #aaa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.cell.revealed {
  background-color: #fff;
}

.cell.flagged {
  background-color: #f00;
  color: #fff;
}