#poiList { 
  align-items: center;
  justify-content: center; 
}
#results {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   flex-grow: 1;
   overflow-y: scroll;
   width: 100%;
   height: auto; /* Change this line */
   box-sizing: border-box;
   scroll-margin-top: 80px; /* Add scroll-margin-top */
   scroll-margin-bottom: 140px; /* Add scroll-margin-bottom */
   position: fixed; /* Make it fixed */
   margin-top: 90vh;
   padding-top: 15px;
   left: 46%;
   transform: translate(-50%, -50%); /* Adjust for exact centering */
   text-align: center;
   z-index: 9999;
}

#results-label {
  font-size: 20px;
  font-family: 'PT Serif', serif;
  font-weight: lighter;
  text-align: center;
  display: none;
  
}

#close-icon {
    position: fixed; 
    right: 16px; /* add some space from the right */
    top: 10%; /* center it vertically */
    transform: translateY(-50%); 
    width: 25px;
    height: 25px;
    display: none;
    cursor: pointer;
  z-index: 9999999;
}

#loading-gif {
    position: absolute;
    top: 50%;
    left: 50%; /* add this line to center it horizontally */
    transform: translate(-50%, -50%); /* center it both vertically and horizontally */
    width: 70vw;
    height: 30vh;
    display: none;
    cursor: pointer;
}

.navigate-button {
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
  height: 40px;
  margin-top: 5px;
  cursor: pointer;
}

.navigate-button:hover {  
  background-color: white;
  color: blue;
  border: 3px solid blue;
  cursor: pointer;
}

.highlight {
  background-color: #0000a8;
  color: #80ff00;
}

li {
    list-style-type: none;
}
