
/* Place the navbar at the bottom of the page, and make it stick */
.mapnav {
  background-color: var(--button_passive_bg);
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Style the links inside the navigation bar */
.mapnav a {
  float: left;
  display: block;
  color: var(--button_passive_text);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.mapnav a:hover {
  background-color: var(--button_triggered_bg);
  color: var(--button_triggered_text);
}

/* Add a color to the active/current link */
.mapnav a.active {
  background-color: #04AA6D;
  color: white;
}
