.notify-container { position: fixed; right: 16px; bottom: 16px; display: grid; gap: 10px; z-index: 2000; }
.notice {
  padding: 10px 12px; border-radius: var(--r-2); border: 1px solid var(--border);
  background: var(--surface); backdrop-filter: blur(var(--glass-blur));
  min-width: 220px; animation: slideIn 220ms ease-out;
}
@keyframes slideIn { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
