html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
}

#map {
  width: 100vw;
  height: 100vh;
  background: black;
}

.leaflet-container {
  cursor: default !important;
}

.leaflet-interactive {
  cursor: pointer !important;
}

#watermark {
  position: fixed;
  bottom: 6.6vh;
  right: 1vw;
  width: 170px;
  opacity: 0.5;
  z-index: 9999;
  pointer-events: none;
}

#cursorViewportPosition,
.input-overlay,
.textHelper,
.button-overlay {
  position: fixed;
  color: white;
  font-size: 15px;
  z-index: 9999;
}

#cursorViewportPosition {
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid black;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
  right: 1vw;
  bottom: 1vh;
}

.textHelper {
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid black;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
  top: 1vh;
  left: 1vw;
}

.input-overlay {
  top: 1vh;
  right: 2vw;
  min-width: 10vw;
  max-width: 30vw;
}

.input-row {
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid black;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

input[type="text"],
input[type="number"],
textarea {
  background-color: #111;
  color: #fff;
  border: 1px solid #444;
  padding: 5px 10px;
  caret-color: white;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #888888;
  opacity: 0.5 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888888 !important;
  opacity: 0.5 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888888 !important;
  opacity: 0.5 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888888 !important;
  opacity: 0.5 !important;
}

.button-overlay {
  bottom: 1vh;
  left: 1vw;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid black;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

button.custom-button {
  background-color: rgba(0, 0, 0, 0.4) !important;
  color: #008bd1 !important;
  border: none !important;
  padding: 10px 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

button.custom-button:hover,
button.custom-button:focus {
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: #00bfff !important;
}

button.custom-button.active {
  background-color: rgba(0, 0, 0, 0.9) !important;
  color: #00d1ff !important;
}

a.link-gold {
  color: #008bd1;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.link-gold:hover {
  color: #00bfff;
  text-decoration: underline;
}

.nav-tabs .nav-link {
  background-color: transparent !important;
  color: white;
  border: none;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: #00bfff;
  outline: none;
  box-shadow: none;
}

.nav-tabs .nav-link.active {
  background-color: transparent !important;
  color: #00bfff !important;
  border: none;
  position: relative;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #008bd1;
  border-radius: 2px;
}

input[type="checkbox"] {
  accent-color: #008bd1;
  background-color: transparent;
  border: 1px solid #008bd1;
  cursor: pointer;
}

input[type="checkbox"]:not(:checked) {
  background-color: transparent;
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: none;
}

.text-muted {
  color: #ccc !important;
  opacity: 0.75 !important;
}

.leaflet-div-icon {
  background: none !important;
  border: none !important;
}

.leaflet-div-icon::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #00bfff; /* Light blue */
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 2px black;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.zone-divider {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.2) !important; /* very transparent */
  box-shadow: 0 1px 0 rgba(0,0,0,0.4);          /* subtle contrast so it’s still visible */
  margin: 10px 0;
}





