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

h1 {
  color: #f2f2f2;
}

.controls {
  margin-bottom: 10px;
}

button {
  padding: 10px 14px;
  margin: 5px;
  background-color: #050763;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

button:hover {
  background-color: #2992e3;
}

.court-container {
  position: relative;
  max-width: 400px;
  margin: auto;
}

canvas {
  width: 100%;
  height: auto;
  background:#38598e;
  touch-action: none;
}

.token {
  position: absolute;
  width:30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: grab;
  user-select: none;
  touch-action: none;
  z-index: 10;
}

.player {
  background: green;
  color: white;
}
.players {
  background: cyan;
  color: black;
}

.ball {
  background: yellow;
  border: 2px yellow;
  font-size: 0px;
}

