/* Contenedor de notificaciones */
#ubihome-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

.ubihome-toast {
  display: flex;
  align-items: center;
  gap: 12px;

  /* Animación de entrada */
  animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--brand-color);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px 24px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
}

.ubihome-toast.fade-out {
  transform: translateX(100%);
  opacity: 0;
}

@keyframes toastIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-message {
  font-size: var(--text-xs);
}
