/* autocompleteWithImages.css */

/* The container should be positioned relative */
.autocomplete-container {
  position: relative;
}

/* The dropdown list */
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none; /* Hidden by default */
}

/* Each autocomplete item */
.autocomplete-item {
  cursor: pointer;
}

/* Hover effect for items */
.autocomplete-item:hover {
  background-color: #f8f9fa;
}

/* Image styles within each item */
.autocomplete-item img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
