/* Minimal safe Leaflet map styling */
/* This file contains ONLY the essential CSS needed for Leaflet tiles to render correctly */

/* Map container sizing */
#mymap {
    width: 100%;
    height: 500px;
}

/* Prevent global CSS from resizing map tile images */
.leaflet-container img {
    max-width: none !important;
}

/* Hide object-location elements (they are used only for data attributes) */
.object-location {
    display: none;
}

/* Safety rule for global border-box sites */
.leaflet-container, .leaflet-container * {
    box-sizing: content-box;
}
