/* Map container sizing: make the map fill its parent `.map-frame` */
.map-frame {
  height: 660px;
}

/* Map comparison container for swipe effect */
.map-comparison-container {
  position: relative;
  width: 100%;
  height: 660px;
  overflow: hidden;
}

#map {
  width: 100%;
  min-height: 300px;
  z-index: 0;
}

.home-page-map {
  height: 660px;
}

.camps-map {
  height: 440px;
}

.communities-map {
  height: 465px;
}

/* Overlay map positioned on top */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: inset(0 0 0 50%);
}

/* Swipe slider */
.swipe-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: ew-resize;
  transform: translateX(-50%);
}

/* Swipe handle */
.swipe-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipe-handle::before,
.swipe-handle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.swipe-handle::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent #666 transparent transparent;
  left: 10px;
}

.swipe-handle::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #666;
  right: 10px;
}

/* Grayscale the base map tiles only */
.grayscale-tiles {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* Keep overlay map in full color */
.color-tiles {
  filter: none;
}

/* Custom pin style (circle with border) */
.custom-pin-communities {
  width: 18px;
  height: 18px;
  background: #004C73;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(179, 0, 0, 0.12);
}

.custom-pin.small {
  width: 16px;
  height: 16px;
}

/* Jasenovac (camp) distinct pin */
.custom-pin-camps {
  width: 18px;
  height: 18px;
  background: #b30000;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

/* Label wrapper and text to the right of the pin */
.marker-label-wrapper {
  display: flex;
  align-items: center;
}

.marker-label-communities {
  margin-left: 4px;
  background: rgba(255, 255, 255, 0.95);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #222;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  height: 26px;
}

.marker-label-camps {
  margin-left: 4px;
  background: rgba(255, 255, 255, 0.95);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #222;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  height: 26px;
}/*# sourceMappingURL=maps.css.map */