/*
 * Keep Leaflet map layers inside the form field stacking context.
 * Leaflet panes and controls use z-index values up to 1000, which otherwise
 * paint above Unfold's sticky header and submit row (z-40).
 */
.admin-map-widget {
    isolation: isolate;
    position: relative;
    z-index: 0;
}

.admin-map-widget .leaflet-container {
    position: relative;
    z-index: 0;
}

/* Unfold sticky chrome above in-page maps. */
#main > .sticky.top-0,
#submit-row {
    z-index: 50 !important;
}
