/* Base Styles */
body {
  margin: 0;
  padding: 0;
}

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

/* Language Switch */
.lang-switch {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: white;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* Data Type Switch */
.data-type-switch {
  position: fixed;
  top: 50px;
  right: 10px;
  z-index: 1000;
  background: white;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: 2px solid #007cba;
}

/* Data Source Note */
#dataSourceNote {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  font-size: 13px;
}

#dataSourceNote a {
  color: #0654ba;
  text-decoration: none;
}

@media (max-width: 480px) {
  #dataSourceNote {
    font-size: 12px;
    padding: 6px 8px;
  }
}
