/* Global layout */
html, body, #map {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Controls container (top-left) */
.jlt-controls {
  position: absolute;
  top: 10px;
  left: 50px;
  padding: 6px 10px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  align-items: center;
  opacity: 0.8;
}

.jlt-controls label {
  font-size: 14px;
  color: #222;
  cursor: pointer;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Div icon wrapper used by Leaflet */
.jlt-div-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jlt-dot {
  display: block;
  border-radius: 50%;
}

.jlt-dot--orange {
  background: #FB5B1E;
  width: 12px;
  height: 12px;
}

.jlt-dot--blue {
  background: #4398EB;
  width: 12px;
  height: 12px;
}

.jlt-dot--greenorange {
  width: 8px;
  height: 8px;
  background: #FB5B1E;
  border-radius: 50%;
  border: 2px solid #006400;
}

.jlt-dot--blueorange {
  width: 8px;
  height: 8px;
  background: #FB5B1E;
  border-radius: 50%;
  border: 2px solid #4398EB;
}

.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
}

.jlt-reload {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 6px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #222;
}


