#autocomplete-wrapper { position: relative; width: 100%;}

.autocomplete-input {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.autocomplete-input img {
  width: 24px;
  height: 24px;
  margin-right: 10px; object-fit: contain;
}

.custom-suggestions {
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  z-index: 1000;
}

.custom-suggestion {
  display: flex;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
  align-items: flex-start; /* Align to start for better appearance */
}

.custom-suggestion:hover {
  background-color: #f0f0f0;
}

.place-description {
  display: flex;
  align-items: center;
  width: 100%; font-size: 14px; font-weight: 600; color: #444;
}

.place-description img {
  width: 16px; /* Smaller icon size */
  height: 16px; /* Smaller icon size */
  margin-right: 10px;
}

.place-details {
  color: #767676;
  font-size: 14px;
  margin-left: 26px; /* Align with the start of the place name */
}