/* Map container background from theme (DaisyUI base-200) */ .leaflet-container { background: var(--color-base-200); } /* Override Leaflet default: show tiles even when leaflet-tile-loaded is not applied (e.g. due to cache, Nuxt hydration, or load event order). */ .leaflet-tile { visibility: visible !important; } /* Subtle highlight when a tile is updated via SSE (reduced intensity to limit flicker). */ @keyframes tile-fresh-glow { 0% { opacity: 0.92; } 100% { opacity: 1; } } .leaflet-tile.tile-fresh { animation: tile-fresh-glow 0.4s ease-out; }