/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  animation: slideIn 250ms var(--ease) forwards;
  pointer-events: auto;
  min-width: 240px;
}

.toast-out {
  animation: slideIn 250ms var(--ease) reverse forwards;
}

.toast-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.toast-sucesso .toast-icon {
  background: #DCFCE7;
  color: var(--status-concluida);
}

.toast-erro .toast-icon {
  background: #FEE2E2;
  color: var(--status-cancelada);
}

.toast-info .toast-icon {
  background: #DBEAFE;
  color: var(--status-aberta);
}
