.autocomplete {
    /*the container must be positioned relative:*/
    position: absolute; /* Set the overlay to absolute positioning */
    transform: ad(-50%, -50%); /* Center the overlay */
    background-color: rgba(250, 250, 250, 0.1); /* Semi-transparent red background */
    padding: 10px;
    color: black;
    z-index: 1000;
    margin-top: 5px;
  }
  .autocomplete-active {
    /*the container must be positioned relative:*/
    position: absolute; /* Set the overlay to absolute positioning */
    transform: ad(-50%, -50%); /* Center the overlay */
    background-color: rgba(237, 237, 237, 1); /* Semi-transparent red background */
    padding: 10px;
    color: black;
    z-index: 1000;
    margin-top: 5px;
  }
  