.toast-container{position:fixed;top:1.5rem;right:1.5rem;z-index:9999;display:flex;flex-direction:column;gap:.75rem;pointer-events:none;max-width:400px;width:calc(100vw - 3rem)}.toast-item{pointer-events:auto;position:relative;display:flex;align-items:center;gap:1rem;padding:1rem 1.25rem;border-radius:12px;background:rgba(15,23,42,.8);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid hsla(0,0%,100%,.1);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);overflow:hidden}.toast-item.success{border-left:4px solid #10b981}.toast-item.success .toast-icon{color:#10b981}.toast-item.success .toast-progress{background:#10b981}.toast-item.error{border-left:4px solid #ef4444}.toast-item.error .toast-icon{color:#ef4444}.toast-item.error .toast-progress{background:#ef4444}.toast-item.info{border-left:4px solid #3b82f6}.toast-item.info .toast-icon{color:#3b82f6}.toast-item.info .toast-progress{background:#3b82f6}.toast-item.warning{border-left:4px solid #f59e0b}.toast-item.warning .toast-icon{color:#f59e0b}.toast-item.warning .toast-progress{background:#f59e0b}.toast-item .toast-icon{flex-shrink:0;display:flex;align-items:center;justify-content:center}.toast-item .toast-content{flex-grow:1;color:#f1f5f9;font-size:.9375rem;font-weight:500;line-height:1.4}.toast-item .toast-close{flex-shrink:0;background:none;border:none;color:#94a3b8;cursor:pointer;padding:.25rem;border-radius:6px;transition:all .2s;display:flex;align-items:center;justify-content:center}.toast-item .toast-close:hover{background:hsla(0,0%,100%,.1);color:#fff}.toast-item .toast-progress{position:absolute;bottom:0;left:0;height:3px;width:100%;transform-origin:left;animation:toast-progress linear forwards;opacity:.6}@keyframes toast-progress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}