.toast-container{position:fixed;top:20px;right:20px;width:300px;z-index:9999;display:flex;flex-direction:column;gap:10px}.toast{background-color:rgba(0,0,0,.8);color:#fff;padding:12px 16px;border-radius:4px;box-shadow:0 2px 10px rgba(0,0,0,.1);opacity:0;transform:translateX(20px);transition:all .3s ease;display:flex;align-items:center;gap:10px;font-size:16px}.toast-icon{width:24px;height:24px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.toast.success{background-color:rgba(40,167,69,.9)}.toast.error{background-color:rgba(220,53,69,.9)}.toast.warning{background-color:rgba(255,193,7,.9)}.toast.info{background-color:rgba(23,162,184,.9)}.toast.show{opacity:1;transform:translateX(0)}.toast-close{margin-left:auto;cursor:pointer;opacity:.7;transition:opacity .2s}.toast-close:hover{opacity:1}