.toast-container{position:fixed;top:20px;right:20px;z-index:1000;overflow-wrap:break-word}.toast,.toast-container{display:flex;flex-direction:column;gap:10px}.toast{padding:15px 20px;font-size:14px;color:white;cursor:pointer;box-shadow:0 4px 6px rgba(0,0,0,.1);opacity:.9;transition:all .3s ease;backdrop-filter:blur(10px);position:relative;overflow:hidden}.toast:hover{opacity:1;transform:scale(1.05)}.toast-success{background-color:green}.toast-error{background-color:red}.toast-info{background-color:purple}.toast-warning{background-color:rgb(166,134,3)}.toast-loading-line{background:#fff;height:3px;width:0;position:absolute;bottom:0;left:0;animation:loadOut 4s linear;animation-fill-mode:forwards;transition:width linear ease-in-out}.toast:hover .toast-loading-line{animation-play-state:paused}@keyframes loadOut{0%{width:100%}to{width:0}}