@charset "utf-8";

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 240px;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 500;
  background: #fff;
  border-left: 6px solid var(--muted);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Cores por nível */
.toast.info {
  border-color: #3b82f6;
}
.toast.success {
  border-color: #22c55e;
}
.toast.warning {
  border-color: #facc15;
}
.toast.error {
  border-color: #ef4444;
}

/* Estado escondido (animado) */
.toast.hide {
  opacity: 0;
  transform: translateX(100%);
}
