body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  legend {
    font-size: 14px;
  }
  
  .legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height: 100vh; /* Limit height */
    overflow-y: auto; /* Enable scrolling */
  }
  
  .legend h1,
  .legend h3 {
    margin: 0 0 10px;
  }
  
  legend ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  legend li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  legend li div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  legend label {
    font-size: 12px;
  }
  
  button {
    padding: 5px 10px;
    margin-right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  select {
    margin-bottom: 10px;
    padding: 5px;
  }
  

/* Popup styles */
.popup {
  /* display: none; */
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  /* color: rgba(19, 233, 97, 0.8); */
  padding: 5px;
  border-radius: 3px;
  font-size: 14px;
  font-family: 'verahumana95bold';
  /* border: 1px solid #ccc; */
  z-index: 1000; /* Ensure it appears above other elements */
}