#map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
}

#worldmap {
  width: 100%;
  height: auto;
  display: block;

  /* Optional: Styling */
  opacity: 0.6;
  filter: grayscale(1) brightness(0.5);
}

/* Neues Setup */
.city-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
  text-align: center;
}

.marker-icon {
  font-size: 18px;
  color: black;
  display: block;
  line-height: 1;
}

.city-label {
  position: relative;
  top: -4px;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
}

.legend ul {
  padding-left: 1.2rem;
}

.legend li {
  font-size: 0.95rem;
}
