body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

#startScreen, #gameScreen, #lostScreen, #howToPlayScreen, #creditsScreen, #highScoresScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#startScreen, #gameScreen, #lostScreen {
  background-color: rgba(240, 240, 240, 0.9);
}

#howToPlayScreen, #creditsScreen, #highScoresScreen {
  background-color: rgba(240, 240, 240);
}

#gameScreen {
  z-index: 1;
}

h1 {
  font-size: 2em;
  color: #333;
}

#canvas {
  border: 2px solid black;
  background-color: #fff;
}

#minimap {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 2px solid black;
  background-color: #fff;
}

#playerList {
  position: absolute;
  top: 220px;
  right: 10px;
  background-color: #fff;
  border: 2px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 300px;
  overflow-y: auto;
}

#playerList tr {
  padding: 0;
}

#playerList td {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 5px;
  padding-right: 5px;
}

.crown {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('/assets/crown.svg');
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -12px;
  left: 2px;
}

.player-ball {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}

.player-ball.it {
  border: 2px solid red;
}

.player-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  position: relative;
  padding: 5px;
}

.player-id {
  margin-left: 5px;
}

.player-points {
  margin-left: auto;
  font-weight: bold;
}

#toggleSettings {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border: 2px solid black;
  padding: 10px;
}

#lostScreen, #howToPlayScreen, #creditsScreen, #highScoresScreen {
  display: none;
}

#highScoresList {
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
}

#highScoresList div {
  margin-bottom: 5px;
}

#highScoresScreen button {
  margin-top: 20px;
}
