/* Make the Leaflet admin map fill the form area */
.leaflet-container {
  width: 100% !important;
        z-index: 1;
}

/* django-leaflet admin widget wrappers */
.leaflet-map,
.leaflet-widget,
.leaflet-widget .leaflet-container {

  width: 100% !important;
  height: 70vh !important;       /* tweak: 60–80vh usually feels right */
  min-height: 520px !important;  /* safety for short viewports */
}

/* Remove any max-width constraints from admin field rows */
.form-row .leaflet-widget {
  max-width: none !important;
}