.autoComplete_list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 5px);
  max-height: 230px;
  overflow-y: auto;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: start;
}

/* Individual results in the dropdown */
.autoComplete_result {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  color: black;
}

.autoComplete_result:last-child {
  border-bottom: none;
}

.autoComplete_result:hover {
  background-color: #f5f8ff;
}
