#map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }

  #menu {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    border-radius: 5px;
    z-index: 9999;
    display: flex;
    justify-content: center;
  }
  #single-user {
    background-color: #ffc300;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding-top:5px;
    text-decoration: none;
}

  #menu label {
    display: block;
    margin-bottom: 5px;
    margin-right: 10px;
  }

  #menu input[type="radio"] {
    display: none;
  }

  #menu input[type="radio"] + label {
    cursor: pointer;
  }

  #menu input[type="radio"] + label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border: 2px solid #ffffff;
    border-radius: 50%;
  }

  #menu input[type="radio"]:checked + label::before {
    background-color: #ffc300;
  }

  #menu .separator {
    height: 0px;
    background-color: #ffffff;
    margin: 1px 0;
    flex-basis: 100%;
  }

  #sidebar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: rgb(45, 42, 42);
    padding: 10px;
    border-radius: 15px;

  }

  .slider {
    -webkit-appearance: none;
    width: 76%;
    height: 4px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 7px;
    height: 6px;
    background:#ffc300 ;
    cursor: pointer;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 15%;
    margin-right: 5px;
  }

  .legend-label {
    font-size: 10px;
    color: rgba(250,250,250,0.8);
  }



  .btn-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  .radio-label {
    display: block;
    width: 100%;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust the opacity as needed */
    color: #ffc300;
    font-size: 14px;
    cursor: pointer;
  }
  
  .btn-radio {
    display: none; /* Hide the actual radio buttons */
  }
  
  .btn-radio:checked + .radio-label {
    border: 1px solid #ffc300; /* Highlight selected button with a red border */
    background-color: rgba(0, 0, 0, 0.6);
  }
  


