
[x-cloak] {
  display: none !important;
}
/* applies only to touch devices (hover:none = finger screens)  */
@media (hover:none) and (pointer:coarse) {
  html, body {
    /* allow vertical & horizontal scroll, block pinch‑zoom */
    touch-action: pan-x pan-y;
  }
}

/* the map container or the <iframe> that holds it */
iframe,                 /* if the map lives in an <iframe>  */
.ol-viewport {          /* OL’s own internal container      */
  touch-action: none;
}



.leaflet-popup-content-wrapper,
.leaflet-popup-content {
  max-width: none !important;
  width: 400px !important;
  padding: 0 !important;
  border-radius: 1rem !important;
  box-shadow: 10p 10px 32px 10p rgb(0 0 0 / 0.18);
}

.leaflet-popup-content {
  margin: 0 !important;
  padding: 0 !important;         
  width: 100% !important;
}

.leaflet-popup-content p {
  margin: 0 !important;         
}

.leaflet-popup-tip {
  /* You can also hide the tip, or fake a rounded one if you're picky */
  display: none !important; /* If you want full card with no arrow */
}

.fly-tip {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 6px 12px;
  border-radius: 9999px;         /* pill shape */
  color: #fff;
  background: rgba(60, 60, 60, 0.85);  /* translucent dark */
  backdrop-filter: blur(8px);   /* frosted glass feel */
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);

  opacity: 0;
  transform: translateY(0) scale(0.95);
  transition:
    transform 0.4s cubic-bezier(0.25,0.1,0.25,1),
    opacity 0.4s ease;
  z-index: 9999;
}

.fly-tip.show {
  opacity: 1;
  transform: translateY(-35px) scale(1);
}


