.toast-container{position:fixed;bottom:20px;right:20px;display:flex;flex-direction:column;align-items:flex-end;z-index:1000}.toast{min-width:200px;margin-top:10px;padding:10px 20px;border-radius:4px;color:white;font-size:16px;font-weight:500;opacity:0;transform:translateY(50px);animation:toast-in-right .7s ease-in-out forwards}.toast.success{background-color:#4CAF50}.toast.error{background-color:#F44336}.toast.notice{background-color:#2196F3}@keyframes toast-in-right{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}