.autoComplete_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#autoComplete {
  -webkit-appearance: none;
  appearance: none;

  display: flex;
  
  justify-content: center;
  align-items: center;
  font-size: 0.6em;
  width: 12rem;
  height: 1.75rem;
  padding: 8px 12px;
  text-align: center;
  /* margin-bottom: 0.5rem; */

  /* Neutral/1 */
  background: #ffffff;

  /* Neutral/5 */
  border: 1px solid #7b7b7b;
  box-sizing: border-box;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

#autoComplete::placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25em;
  line-height: 22px;

  /* Character/Disabled&amp;Placeholder .25 */
  color: #7b7b7b;
  opacity: 1;
}

.autoComplete_wrapper > ul {

  background: #ffffff;

  box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12),
    0px 6px 16px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  margin:0;
  color: rgba(0, 0, 0, 0.85);
  position: inherit;
  z-index: 1;
  width: 15rem; /* Match the width of the search results to the input */
  padding-left: 0; /* Remove default padding */
}

.autoComplete_wrapper > ul > li {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 0.75em;
  line-height: 1em;

  /* margin: 0.15rem auto; */
  padding: 0.45rem;
  width:16rem;
  /* border: 0.05rem solid #e3e3e3; */
  list-style: none;
  text-align: left;
  color: black;
  transition: all 0.1s ease-in-out;
  background-color: #fff;
}

.autoComplete_wrapper > ul > li:hover, form:hover, button:hover {
  cursor: pointer;
  background: #F5F5F5;
}

.autoComplete_wrapper > ul > form > button {
  width: 100%;
  text-align: left;
  padding: 0.45rem;
  background: none;
  border: none;
  font-family: Roboto;
  font-size: 0.75em;
  line-height: 1em;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.autoComplete_wrapper > ul > button:hover {
  cursor: pointer;
  background: #F5F5F5;
}

.autoComplete_wrapper > ul > button:focus {
  background-color: #F0F0F0;
  outline: none;
}

.autoComplete_wrapper > ul > a {
  display: block; 
  background-color: #0074E0; /* Blue background */
  color: white; /* White text */
  padding: 10px 15px;
  text-decoration: none;
  font-family: Roboto;
  font-size: 0.75em;
  transition: background-color 0.2s ease;
  width: 16rem; /* Match width of results container */
  text-align: center;
  box-sizing: border-box;
}

#autoComplete_list_1 {
  margin: 1em;
}