.toast-container{position:fixed;top:90px;right:20px;display:flex;flex-direction:column;align-items:flex-end;gap:10px;z-index:2147483647}.toast-item{--toast-fade-delay:2650ms;display:flex;align-items:center;gap:10px;min-width:260px;max-width:360px;padding:10px 12px;border-radius:12px;background:#00002a;border:1px solid hsla(0,0%,100%,.12);box-shadow:0 10px 28px rgba(0,0,0,.45);color:var(--text-color);animation:toast-in-right .3s ease,toast-out-right .35s ease forwards;animation-delay:0s,var(--toast-fade-delay)}.toast-item.persistent{animation:toast-in-right .3s ease}.toast-item .icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:24px;height:24px;border-radius:50%;color:#fff;font-size:11px}.toast-item .message{flex:1 1;min-width:0;font-size:14px;font-weight:500;line-height:1.4;overflow-wrap:anywhere}.toast-item .close-btn{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:24px;height:24px;padding:0;border:none;border-radius:50%;background:hsla(0,0%,100%,.1);color:var(--text-color);font-size:14px;cursor:pointer;transition:background .2s ease}.toast-item .close-btn:hover{background:hsla(0,0%,100%,.2)}.toast-item.success .icon{background:#22c55e}.toast-item.error .icon{background:#ef4444}.toast-item.info .icon{background:#3b82f6}.toast-item.warning .icon{background:#f59e0b}@media(max-width:768px){.toast-container{top:72px;right:12px;left:12px}.toast-item{min-width:0;max-width:100%;padding:9px 10px;gap:8px;animation:toast-in-top .3s ease,toast-out-top .35s ease forwards;animation-delay:0s,var(--toast-fade-delay)}.toast-item.persistent{animation:toast-in-top .3s ease}.toast-item .message{font-size:13px}}@media(prefers-reduced-motion:reduce){.toast-item{animation:toast-fade-in .3s ease,toast-fade-out .35s ease forwards;animation-delay:0s,var(--toast-fade-delay)}.toast-item.persistent{animation:toast-fade-in .3s ease}}@keyframes toast-in-right{0%{transform:translateX(120%);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes toast-out-right{to{opacity:0;transform:translateX(120%)}}@keyframes toast-in-top{0%{transform:translateY(-120%);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes toast-out-top{to{opacity:0;transform:translateY(-120%)}}@keyframes toast-fade-in{0%{opacity:0}to{opacity:1}}@keyframes toast-fade-out{to{opacity:0}}