<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.autocomplete-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.autocomplete-container label {
  display: block;
}

.autocomplete-items {
  list-style: none;
  padding: 0;
  margin: 0;

  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 100%;
  left: 0;
}

.autocomplete-items li {
  cursor: pointer;
  padding: 10px;
  transition: background-color 0.3s ease;
  border-right: 1px solid #ccc;
  border-left:  1px solid #ccc;
  border-top:  1px solid #eee;
}
.autocomplete-items li:last-child {
  border-bottom:  1px solid #eee;
}

.autocomplete-items li:hover,
.autocomplete-items li.selected {
  background-color: #f0f0f0;
}

.autocomplete-items {
  cursor: pointer;

  transition: background-color 0.3s ease;
}

.autocomplete-items .item-title {
  font-weight: bold;
}

.autocomplete-items .item-details {
  font-size: 14px;
  color: #666;
}

.autocomplete-items .item-location {
  margin-top: 4px;
}</pre></body></html>