html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

#content {
  position: relative;
  width: 100%;
  height: 100dvh;
}

#map {
  width: 100%;
  height: 100%;
}

#map-headings {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent background */
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1000; /* Ensure it appears above the map */
}

#map-main-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

#map-sub-heading {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

#track-selection {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#track-selection input {
  margin-right: 5px;
}
