html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body {
  background-color: black;
}
#openseadragon {
  width: 100%;
  height: 100%;
}

#map-tabs {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 200;
  display: flex;
  gap: 6px;
}
.map-tab {
  font-family: inherit;
  font-size: 13px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(13, 15, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
}
.map-tab.active {
  color: white;
  background: rgba(60, 130, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.5);
}
.map-tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.test-overlay {
  z-index: 100;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(13, 15, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
}
.player-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 150px;
  width: max-content;
  color: white;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  background-color: rgba(13, 15, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 6px;
  text-align: center;
}

.base-overlay {
  z-index: 90;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(13, 15, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
}
.base-label {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 150px;
  width: max-content;
  color: white;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  background-color: rgba(13, 15, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 6px;
  text-align: center;
}
