html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #111;
}

#map {
  width: 100%;
  height: 100vh;
}

.overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(460px, 92vw);

  background: rgba(20,20,20,0.94);
  color: white;

  border-radius: 16px;
  padding: 16px;

  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: 26px;
}

.subtitle {
  text-align: center;
  color: #aaa;
  font-size: 13px;
}

.target {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 12px;
  border-radius: 12px;
  background: #1f2937;
}

.tries {
  text-align: center;
  color: #aaa;
  font-size: 13px;
}

.results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result {
  background: #1c1c1c;
  padding: 10px;
  border-radius: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14px;
}

.correct {
  background: #1b5e20;
}

.status {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}

#shareBtn {
  display: none;

  margin: 8px auto 0 auto;

  padding: 10px 14px;

  border: none;
  border-radius: 10px;

  background: #374151;
  color: white;

  cursor: pointer;
  font-weight: bold;
}

.kab-label {
  background: rgba(0,0,0,0.75);
  color: white;
  border: none;
  box-shadow: none;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 6px;
}

.leaflet-control-attribution {
  display: none;
}
