body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.controls {
  margin-bottom: 15px;
}

#board-container {
  position: relative;
  display: inline-block;
  border: 2px solid #333;
  background: white;
}

#board {
  max-width: 100%;
  display: block;
}

/* Pions */
.pawn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  cursor: grab;
  border: 2px solid #000;
  user-select: none;
}

.pawn:active {
  cursor: grabbing;
}
