.notif-container {
  position: fixed;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.notif {
  min-width: 280px;
  max-width: 420px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 40px 12px 12px;
  box-shadow: 0 8px 24px var(--shadow-strong);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.notif-in { transform: translateY(0); opacity: 1; }
.notif-out { transform: translateY(-8px); opacity: 0; }
.notif-inner { display: grid; gap: 6px; }
.notif-title { font-weight: 600; }
.notif-message { color: var(--muted); }
.notif-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.notif-close:hover { color: var(--accent); border-color: var(--accent); }

.notif-info { border-left: 3px solid var(--accent); }
.notif-success { border-left: 3px solid var(--success); }
.notif-warn { border-left: 3px solid var(--warn); }
.notif-error { border-left: 3px solid var(--danger); }

@media (prefers-reduced-motion: reduce) {
  .notif { transition: none; }
}


