/* Sfondo body = stesso azzurro dell'oceano → nessuna banda visibile.
   Il #stage (1400×780) è centrato orizzontalmente. */

html, body { background: #a3ccd9; margin: 0; padding: 0; font-family: Arial, sans-serif; color: #222; }
body { overflow-x: auto; }

#stage {
  position: relative;
  width: 1400px;
  height: 780px;
  margin: 0 auto;        /* centra la mappa orizzontalmente */
}

#map { width: 1400px; height: 780px; display: block; }

h1 {
  position: absolute;
  top: 28px; left: 0; right: 0;
  margin: 0;
  font-size: 1.8em;
  font-weight: 800;
  color: #222;
  text-align: center;    /* titolo centrato sopra la mappa */
  z-index: 10;
}

#legend {
  position: absolute;
  right: 20px; top: 80px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #aaa;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.7;
  z-index: 10;
  border-radius: 3px;
}
#legend .li { display: flex; align-items: center; gap: 8px; }
#legend .sw {
  display: inline-block;
  width: 22px; height: 14px;
  border: 1px solid #888;
}
