/* Maps System */

.map-shell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 500;
  display: flex;
  gap: .5rem;
}

.map-pill {
  padding: .5rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  font-size: .76rem;
  font-weight: 700;
}

.custom-marker {
  width: 30px;
  height: 30px;
  background: var(--green);
  border: 2px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

#event-map {

    width: 100%;

    aspect-ratio: 1.5;

    min-height: 420px;

    z-index: 1;
}
