.ville-autocomplete-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 1000;
  max-height: 360px;
  overflow-y: auto;
  display: none;
}
.ville-autocomplete-list.active {
  display: block;
}
.ville-autocomplete-item {
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}
.ville-autocomplete-item:last-child {
  border-bottom: none;
}
.ville-autocomplete-item:hover,
.ville-autocomplete-item.selected {
  background: #f0f4ff;
}
.ville-autocomplete-item .ville-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.ville-autocomplete-item .ville-context {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}
.ville-autocomplete-item .ville-code {
  font-size: 12px;
  color: #94a3b8;
}
.ville-loading {
  padding: 16px 18px;
  color: #64748b;
  font-size: 15px;
}
.ville-no-result {
  padding: 16px 18px;
  color: #94a3b8;
  font-size: 15px;
}
