body {
  font-family: Arial, sans-serif;
  text-align: center;
}

#boardContainer {
  position: relative;
  margin: 20px auto;
  width: 550px;
  height: 550px;
}

#board {
  display: grid;
  grid-template-columns: repeat(10, 50px);
  grid-template-rows: repeat(10, 50px);
  gap: 5px;
  width: 550px;
  height: 550px;
  background-color: #f4f4f4;
}

#board div {
  width: 50px;
  height: 50px;
  background-color: #e9ecef;
  border: 1px solid #ccc;
}

.player {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
}

button:hover {
  background-color: #0056b3;
}


