/* ==========================================================================
   RUKIA F10 — toast.css
   --------------------------------------------------------------------------
   F10.4.3-E — camada de notificações/toasts.

   Responsabilidade:
   - Toast root
   - Toast card
   - Estados visuais de toast

   NÃO contém:
   - Layout estrutural
   - Header/Footer
   - Login CP-01
   - Cliente Público
   - Grid/KPIs/modal/importação
   ========================================================================== */

/* Toasts */

.toast-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: grid;
  width: min(420px, calc(100vw - 36px));
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  pointer-events: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.toast-title {
  margin: 0;
  color: var(--text-strong);
  font-weight: 850;
}

.toast-message {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.toast.is-success {
  border-left-color: var(--success);
}

.toast.is-warning {
  border-left-color: var(--warning);
}

.toast.is-danger {
  border-left-color: var(--danger);
}

.toast.is-info {
  border-left-color: var(--info);
}
