/* !!!! Autocomplete stuff all */
/* the container must be positioned relative: */
.autocomplete {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: visible !important; /* Don't clip the dropdown */
}

/* Clean white dropdown for autocomplete suggestions */

.autocomplete-items {
  position: fixed !important;
  z-index: 9999 !important;
  background: #23272e; /* Dark background for dropdown */
  border: 1.5px solid #444; /* Darker border */
  border-radius: 8px; /* More rounded corners */
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.35), 0 0 0 2px #ff6b35;
  margin-top: 2px;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  min-height: auto;
  width: 220px;
}

/* Each suggestion option in the dropdown */

.autocomplete-items div {
  padding: 10px 18px;
  cursor: pointer;
  background: #23272e; /* Match dropdown background */
  border-bottom: 1px solid #333;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  display: block !important;
  width: 100%;
  box-sizing: border-box;
}

/* 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: #ff6b35 !important; /* Orange highlight for hover/active */
  color: #fff !important;
  box-shadow: 0 0 8px #ff6b35;
  border-radius: 6px;
}
