/* Dev panel guaranteed visible */
#weather-dev-panel{
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 2147483647; /* max */
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(20,24,30,.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  font: 500 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
#weather-dev-panel .dev-pill{
  appearance: none;
  border: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
}
#weather-dev-panel .dev-pill:hover{ background: rgba(255,255,255,.22); }
#weather-dev-panel .dev-pill.active{ background: #fff; color:#111; }
