/* ===========================================================================
 * UO Shard — Custom Map Styles
 * Loaded AFTER leaflet.css to override / extend defaults
 * =========================================================================== */

/* -- Map background (ocean color) ----------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%;
  background-color: #003a52;
}

/* -- Popup styling -------------------------------------------------------- */
.uo-popup {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.uo-popup strong {
  font-size: 14px;
}

.uo-popup img {
  display: block;
  margin: 6px auto 0;
  border-radius: 4px;
  max-width: 100%;
  height: auto;
}

/* -- UO Coordinates control (bottom-left) --------------------------------- */
.uo-coords-control {
  background: rgba(0, 0, 0, 0.65);
  color: #e0e0e0;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* -- Server status control (top-right) ------------------------------------ */
.uo-status-control {
  background: rgba(0, 0, 0, 0.65);
  color: #e0e0e0;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.uo-status-online {
  color: #4cff4c;
}

.uo-status-offline {
  color: #ff6060;
}

/* -- Layer control tweaks ------------------------------------------------- */
.leaflet-control-layers {
  border-radius: 4px;
}

/* -- Spawn zone / region tooltip ------------------------------------------ */
.uo-zone-tooltip {
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  padding: 3px 8px;
  white-space: nowrap;
  box-shadow: none;
}

/* Hide the default tooltip arrow */
.uo-zone-tooltip::before {
  display: none;
}

/* Secondary text used inside zone popups */
.uo-zone-coords {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 11px;
  color: #bbb;
}
