.banner-image {
  background-size: cover;
  height: 375px;
}

.top-logo-container {
  background-color: #111212;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem;
}

.banner-text-container {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 1rem;
}

.banner-text > p {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .banner-text {
    font-size: 1.5rem;
  }

  .footer-logo {
    max-width: 50%;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .navbar-toggle-container {
    width: 100%;
  }

  .scale-toggle {
    display: flex;
    flex-direction: row; /* Ensures items inside are in a row */
    justify-content: center; /* Centers the content horizontally */
    margin-top: 20px; /* Adds space above each toggle block */
  }

  .download-data-button {
    display: none;
  }

  .top-logo-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 6px;
  }

  .top-logo-image {
    width: 60px;
  }

  .top-logo-text {
    font-size: 0.75rem;
  }

  .banner-text-container {
    width: 75%;
  }
}

@media screen and (min-width: 601px) {
  .banner-text {
    font-size: 2rem;
  }

  .footer-logo {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-nav {
    display: flex;
    justify-content: flex-end;
    text-align: right;
  }

  .footer-nav > ul {
    padding-left: 0px;
  }

  .scale-toggle {
    display: flex;
    flex-direction: column; /* Stack toggle groups vertically */
    align-items: flex-end; /* Aligns toggle groups to the right */
    margin-right: 3rem;
    margin-top: -70px;
  }

  .toggle-group {
    display: flex;
    flex-direction: row; /* Keeps the radio buttons and labels in a row within each group */
    align-items: center;
    margin-bottom: 10px; /* Adds spacing between the two toggle groups */
  }

  .top-logo-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  .top-logo-image {
    width: 90px;
  }

  .top-logo-text {
    font-size: 1rem;
  }

  .banner-text-container {
    width: 33%;
  }
}

.leaflet-container {
  height: 100%;
  width: 100%;
}

.leaflet-top,
.leaflet-bottom {
  z-index: 800 !important;
}

.time-limit-toggle {
  margin-right: auto;
  margin-left: 0;
  align-items: flex-end;
  display: flex;
}

.toggle-label {
  margin-bottom: 0.5rem;
}

.sticky-banner {
  position: sticky;
  top: 0;
  background-color: red;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
}
