.toast-container{position:fixed;bottom:50px;right:20px;display:flex;flex-direction:column;gap:10px;z-index:9999}.toast-msg{position:relative;background-color:#fff;color:#000;padding:15px 20px;border-radius:8px;font-size:15px;min-width:250px;max-width:350px;box-shadow:0 4px 6px rgba(0,0,0,.3);opacity:1;animation:slide-in-right .4s ease-out forwards;border-left:7px solid #007bff}.toast-msg.fade-out{animation:fade-out .5s ease-in forwards}.toast-msg .toast-msg-content{text-align:left;font-weight:500}.toast-msg.success{border-left-color:green}.toast-msg.error{border-left-color:red}.toast-msg.warning{border-left-color:#ff0}@keyframes slide-in-right{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}