.toast-container{position:fixed;top:80px;right:22px;z-index:1000;display:flex;flex-direction:column;gap:12px;max-width:400px}.toast{background:var(--card);border:1px solid #2b2b2b;border-radius:var(--radius);padding:16px;box-shadow:0 4px 12px rgba(0,0,0,.5);animation:slideIn .3s ease-out}@keyframes slideIn{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}.toast-success{border-left:4px solid var(--accent)}.toast-error{border-left:4px solid #f44}.toast-warning{border-left:4px solid #fa0}.toast-info{border-left:4px solid #48f}.toast-content{display:flex;align-items:center;justify-content:space-between;gap:12px}.toast-message{flex:1 1;font-size:14px;color:#fff;line-height:1.4}.toast-close{background:transparent;border:none;color:var(--muted);font-size:24px;line-height:1;cursor:pointer;padding:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;transition:color .2s}.toast-close:hover{color:#fff}