/* Auto-complétion des villes - DentalYukaVO */

.dy-ac-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dy-ac-list {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 6px;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  width: 100%;
  left: 0;
}

.dy-ac-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  transition: background-color 0.15s ease;
}

.dy-ac-item:hover,
.dy-ac-item.is-active {
  background: #f3f4f6;
}

.dy-ac-item:first-child {
  border-radius: 8px 8px 0 0;
}

.dy-ac-item:last-child {
  border-radius: 0 0 8px 8px;
}

/* Scrollbar personnalisée (optionnel) */
.dy-ac-list::-webkit-scrollbar {
  width: 8px;
}

.dy-ac-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.dy-ac-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 8px;
}

.dy-ac-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
