/* LEAFLET OPEN SOURCE MAP CUSTOM CSS - JOM */
#map-leaflet { height:100%; width:100%; min-height:530px; z-index:1}
.leaflet-top {
	z-index:998!important;
}
/* Floating reset button */
#reset-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  padding: 20px 36px;
  background:var(--e-global-color-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  display: none; /* only shows when zoomed */
  transition: background .2s ease, color .2s ease;
}
#reset-btn:hover { background: var(--e-global-color-accent); color:#fff;}

/* Make pin hitboxes bigger without changing how they look */
.big-click-marker {
  /* padding: 15px;         invisible clickable buffer around pin <its buggy, do not use> */
  background: transparent;
}

/* Two-column popup layout */
.popup-content {
  display: flex;
  width: 300px;
  font-family: Arial, sans-serif;
  line-height: 1.35;
  color:#434a3c;
}
.popup-content img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
  flex-shrink: 0;
}
.popup-text { flex: 1; }
.popup-text h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #434a3c;
  padding: 0 !important;
}
.popup-text p {
  margin: 0 0 4px 0!important;
  font-size: 13px;
  line-height: 1.35;
}
.popup-text .hours {
  font-size: 12px;
  color: #555;
}
/* END LEAFLET MAP CSS */