#burleigh-map-wrapper { 
  position: relative; 
  width: 100%; 
  flex: 1;  /* flex: 1 tells this wrapper to consume all remaining height left over by the text */
  overflow: hidden; 
}

#div_burleigh_map { 
  width: 100%; height: 100%; 
  background: #d8d8d8; 
}

/* map controls */
.burleigh_controls { 
  position: absolute; 
  top: 5px; 
  left: 5px; 
  z-index: 1000; 
  display: flex; 
  gap: 2px; 
}

/* added to try to ensure that on mobile the map infowindows to not extend wider than the map itself */
.leaflet-popup-content-wrapper {
    max-width: calc(100vw - 70px) !important;
    box-sizing: border-box;
}
.leaflet-popup-content {
    max-width: calc(100vw - 90px) !important; /* account for wrapper padding */
    box-sizing: border-box;
}