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

body {
  background-color: #212529;
}


#sidePanel {
  position: fixed;
  top: 64px;
  right: -320px; /* start hidden offscreen */
  width: 320px;
  height: calc(100% - 64px);
  background: white;
  box-shadow: -3px 0 10px rgba(0,0,0,0.3);
  padding: 20px;
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 100000;
}

#sidePanel.open {
  right: 0;
}


#closeBtn {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #555;
}

.map-container {
  max-width: 100%;
  z-index: 2;
}

.custom-width-navbar {
  width: 42em;
  margin-left: auto;
  margin-right: auto;
}


.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 0.25rem solid transparent;
}

.mid-nav-link {
  margin-left: 1rem;
}
.last-nav-link {
  margin-left: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.5); 
  border-bottom-color: rgba(255, 255, 255, 0.25);
  text-shadow: none;
}

.navbar-nav .nav-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

.navbar-brand {
  font-size: 1.75rem;
  padding-right: 0;
  margin-right: 0;
}

#map-loader {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(122, 122, 122, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  color: white;
}

.custom-py-2-5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}