.map-container {
  position: absolute;
  height: 100svh;
  width: 100svw;
  top: 100%;
  left: 0;
  background: url(../../images/background.png) no-repeat;
  background-size: cover;
}

#map-canvas {
  width: 100%;
  height: 100%;
  background: url(../../images/map.webp) center no-repeat;
  background-size: cover;
  margin-left: -6px;
  user-select: none;
}

.player-container {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 100%;
}

.player-container img:last-child {
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 50px;
}

.player {
  width: 40px;
  height: 40px;
  user-select: none;
  border-radius: 100%;
  cursor: grab;
}

.player-blue-team {
  border: 2px solid blue;
}

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

.selection-square {
  position: absolute;
  background-color: rgba(0, 0, 255, 0.1);
  top: 0;
  left: 0;
  border: 2px solid rgba(0, 0, 255, 0.5);
  border-radius: 5px;
  z-index: 5;
}

.selection-square-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
