body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background-color: black !important;
}

.navbar .btn {
  border-color: white;
}

#sidebar {
  width: 240px;
  height: 100vh;
  position: fixed;
  top: 56px;
  left: 0;
  background-color: #423e3e;
  padding-top: 1rem;
  color: #E48800;
  font-family: 'Bebas Neue';
}

#sidebar .nav-link {
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  display: block;
}

#sidebar .nav-link:hover,
#sidebar .nav-link.active {
  background-color: #fff;
  color: #000 !important;
  border-radius: 0.375rem;
  text-decoration: none;
}

#main-content {
  margin-left: 240px;
  padding: 2rem;
  /* margin-top: 56px; */
}

.btn-outline-primary {
  border-color: #E48800;
  color: #E48800;
}

.btn-outline-primary:hover {
  background-color: #E48800;
  color: white;
}

#locations-container {
  height: calc(100vh - 56px);
  overflow: hidden;
  display: flex;
}

#locations-container .col-md-4 {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
  border-right: 1px solid #ddd;
  height: 100%;
  overflow: hidden;
}

#locations-container h2 {
  position: sticky;
  top: 0;
  background: white;
  padding: 1rem 0;
  z-index: 1;
  border-bottom: 1px solid #ddd;
}

#locations-list {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  padding-bottom: 1rem;
}

#map {
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  width: 100%;
  background-color: #f8f9fa;
}