/* Notyf MIT-inspired local toast — Gmail snackbar look */
.notyf { position: fixed; left: 24px; bottom: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.notyf__toast {
  pointer-events: auto;
  min-width: 280px; max-width: min(480px, 92vw);
  background: #323232; color: #fff; border-radius: 4px;
  padding: 14px 20px; font-size: 14px; line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  animation: notyf-in .18s ease-out;
}
.notyf__toast--error { background: #c5221f; }
.notyf__toast a { color: #8ab4f8; }
@keyframes notyf-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) {
  .notyf { left: 12px; right: 12px; bottom: 12px; }
  .notyf__toast { min-width: 0; width: 100%; }
}
