.autocomplete-menu {
  padding: 4px;
  border-radius: 14px;
}

.autocomplete-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.autocomplete-category {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 7px;
  background: #f3f6fa;
  color: var(--muted);
}

.autocomplete-category .material-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.autocomplete-copy {
  flex: 1;
  display: grid;
  min-width: 0;
  gap: 2px;
}

.autocomplete-copy strong,
.autocomplete-copy .place-subtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.autocomplete-copy strong {
  font-size: 13px;
}

.autocomplete-copy .place-subtitle {
  font-size: 11px;
}

.autocomplete-country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.autocomplete-country .country-flag {
  width: 14px;
  height: 14px;
}
