body {
  font-family: 'Comic Sans MS', cursive;
  margin: 0;
  background: #fff9ed;
  color: #333;
  text-align: center;
}

h1 {
  background: #ffce54;
  margin: 0;
  padding: 20px;
  font-size: 2em;
}

#game {
  display: flex;
  justify-content: center;
  padding: 20px;
}

#grid {
  display: grid;
  grid-template-columns: repeat(5, 60px);
  grid-template-rows: repeat(5, 60px);
  gap: 5px;
}

.cell {
  width: 60px;
  height: 60px;
  background: #eee;
  border: 2px solid #ccc;
  position: relative;
  font-size: 14px;
}

.cell .item {
  font-size: 12px;
}

.cell .player {
  font-weight: bold;
  color: red;
}

#sidebar {
  margin-left: 30px;
  text-align: left;
}

#actions button {
  display: block;
  margin: 5px 0;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  background: #b3e5fc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
