body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
  background: #295038;
  margin: 0;
  padding: 20px;
}

label{
  color: white;
  font-size: 1.2rem;
}

#controls {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

#controls select {
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Game Board */
#board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
}

.cell {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: background 0.2s;
}

.cell:hover {
  background: #e0e0e0;
}

/* Reset Button */
#reset {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #4CAF50;
  color: white;
  transition: background 0.2s;
}

#reset:hover {
  background: #45a049;
}

