.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  display: none;
}

.suggestions-list li {
  padding: 8px 12px;
  cursor: pointer;
}

.suggestions-list li:hover {
  background: #f0f0f0;
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  display: none;
  z-index: 2000;
}

.toast.show {
  display: block;
  animation: fadeOut 3s forwards;
}

/* Ítem activo: fondo azul y texto blanco */
.suggestions-list li.active {
  background-color: #007bff;
  color: #fff;
}


@keyframes fadeOut {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}
