/* !!!! Autocomplete stuff all */
/* the container must be positioned relative: */
.autocomplete {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Clean white dropdown for autocomplete suggestions */
.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff; /* White background for dropdown */
  border: 1px solid #ccc; /* Light border */
  border-radius: 4px; /* Rounded corners */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Subtle shadow */
  z-index: 1000;
  margin-top: 2px;
  padding: 0;
}

/* Each suggestion option in the dropdown */
.autocomplete-items div {
  padding: 8px 14px;
  cursor: pointer;
  background: #fff; /* White background for each option */
  border-bottom: 1px solid #f0f0f0; /* Divider between options */
  font-size: 15px;
  font-weight: 400;
  color: #222; /* Default text color */
  transition: background 0.15s, color 0.15s;
}

/* Remove border from last option */
.autocomplete-items div:last-child {
  border-bottom: none;
}

/* Hover and active state for each option */
.autocomplete-items div:hover,
.autocomplete-items div.autocomplete-active {
  background: #339cff !important; /* Light blue background on hover/active */
  color: #fff !important; /* White text on hover/active */
}
