/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 24 2026 | 20:26:44 */
/* Overlay plein écran */
.pacha-map-lightbox {
  display: none;
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image agrandie */
.pacha-map-lightbox img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  transform-origin: center center;
  cursor: grab;
  user-select: none;
}

/* Bouton fermer */
.pacha-map-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 1000000;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

/* Contrôles zoom */
.pacha-map-controls {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000000;
  display: flex;
  gap: 10px;
}

.pacha-map-controls button {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
}

.pacha-map-controls button:hover {
  background: #f2f2f2;
}