/* src/agentic_rf_planner/ui/static/style.css */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

#map-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 230px;
}

#map {
  width: 100%;
  height: 100%;
}

#sidebar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 230px;
  padding: 10px;
  box-sizing: border-box;
  background: #111;
  color: #eee;
  font-size: 14px;
  overflow-y: auto;
  overflow-x: hidden;
}

#status {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
}

#rsrp-legend {
  /* Fixed so it stays visible above Cesium/Leaflet overlays. */
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px;
  border-radius: 5px;
  z-index: 9999;
  pointer-events: none;
  min-width: 140px;
  border: 1px solid #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#rsrp-legend h3 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #eee;
  font-weight: bold;
}

#rsrp-legend-gradient {
  width: 20px;
  height: 200px;
  border: 1px solid #666;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(to top, rgb(0, 0, 255), rgb(255, 0, 255));
}

#rsrp-legend-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  margin-left: 5px;
  font-size: 10px;
  color: #ccc;
}

#rsrp-legend-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

#rsrp-legend-values {
  margin-top: 5px;
  font-size: 10px;
  color: #aaa;
  text-align: center;
}

