.toast-container{position:fixed;top:2rem;left:2rem;z-index:10000;animation:slideInRight .3s cubic-bezier(.16,1,.3,1);pointer-events:auto}.toast-content{gap:.75rem;background:var(--card);border:1px solid var(--border);border-radius:12px;padding:1rem 1.25rem;box-shadow:0 10px 25px rgba(0,0,0,.15),0 0 0 1px rgba(255,255,255,.05);backdrop-filter:blur(12px);min-width:300px;max-width:400px;color:var(--foreground)}.toast-content,.toast-icon{display:flex;align-items:center}.toast-icon{width:2rem;height:2rem;background:var(--gradient-primary);color:var(--primary-foreground);border-radius:8px;justify-content:center;flex-shrink:0;box-shadow:0 4px 12px var(--primary-shadow)}.toast-message{flex:1;font-size:.875rem;font-weight:500;line-height:1.4;color:var(--foreground)}.toast-close{background:transparent;border:none;color:var(--muted-foreground);cursor:pointer;padding:.25rem;border-radius:4px;transition:all .2s ease;display:flex;align-items:center;justify-content:center}.toast-close:hover{background:var(--muted);color:var(--foreground)}@keyframes slideInRight{0%{opacity:0;transform:translateX(-100%) scale(.2)}to{opacity:1;transform:translateX(0) scale(1)}}@media (max-width:768px){.toast-container{top:1rem;left:1rem;right:1rem}.toast-content{min-width:auto}}