/* Toast notifications */
.toast-container{position:fixed;right:16px;bottom:16px;z-index:9999;display:flex;flex-direction:column;gap:10px}
.toast{min-width:220px;max-width:360px;padding:10px 14px;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.15);background:var(--card-bg,#fff);color:var(--text-color,#111);border-left:4px solid #999;animation:toast-in .25s ease-out}
.toast.success{border-left-color:#16a34a}.toast.error{border-left-color:#dc2626}.toast.warn{border-left-color:#f59e0b}
@keyframes toast-in{from{transform:translateY(6px);opacity:0}to{transform:translateY(0);opacity:1}}
