#map {
  /* height: 600px; */
  height: 80vh;
  width: 100%;
  border-radius: 20px;
  border-color: rgb(208, 208, 221);
  border-width: thin;
  border-style: solid;
  box-shadow: rgba(0, 0, 0, 0.65) 2px 5px 8px;
}
h1 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 0;
  padding: 10px 30px 1px;
  text-align: center;
}
h2 {
  padding-bottom: 6px;
  font-size: 12px;
}
body {
  background-color: rgb(244, 248, 248);
}
#page-container {
  position: relative;
  min-height: 100vh;
}
#footer {
  display: inline-block;
  padding-top: 3%;
  font-size: 4%;
  bottom: 10px;
}
#legend {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 1px;
  margin: 1px;
  border: 1px solid #000;
}
#jumpButtons {
  padding-top: 1%;
  text-align: center;
}
#SS,
#CM,
#RT,
#GR,
#DL {
  background-color: rgb(207, 207, 224);
  border-radius: 4px;
}
#dashBut {
  margin-bottom: 1%;
}

/* Style the navigation bar */
#navbar {
  background-color: #333; /* Dark background color */
  color: white;
  overflow: hidden;
  padding: 8px 8px; /* Some padding for height */
  /* **The key properties for the sticky effect:** */
  /*position: sticky;*/
  top: 0;
  z-index: 1000; /* Ensures the navbar stays on top of other elements */
}

/* Style the links inside the navigation bar */
#navbar a {
  color: white;
  text-decoration: none;
  padding: 8px 6px;
  float: left; /* Aligns links horizontally */
  text-align: center;
}

/* Change color on hover */
#navbar a:hover {
  background-color: #ddd;
  color: black;
}
