/* General styles for centering and layout */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

/* Container for the game board */
.container {
  text-align: center;
}

#game-board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  margin-bottom: 20px;
}

/* Style for each cell (square) */
.cell {
  background-color: #fff;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
}

/* Reset button style */
#reset-btn {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

/* Status message for displaying game results */
#status {
  font-size: 1.2rem;
  margin-top: 15px;
}
