.toast-container{position:fixed;top:24px;right:24px;z-index:10050;display:flex;flex-direction:column-reverse;gap:8px;pointer-events:none;width:max-content;max-width:calc(100vw - 32px)}.toast{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:10px;font-family:inherit;font-size:14px;font-weight:500;color:#fff;box-shadow:0 4px 16px rgba(0,0,0,.18);pointer-events:auto;animation:toast-in .25s ease;min-width:200px}.toast--success{background:#005aaa}.toast--error{background:#da2128}.toast--info{background:#005aaa}.toast__icon{font-size:16px;flex-shrink:0;line-height:1}.toast__message{flex:1}.toast__close{background:none;border:none;color:rgba(255,255,255,.8);cursor:pointer;font-size:18px;line-height:1;padding:0 0 0 8px;flex-shrink:0;font-family:inherit}.toast__close:hover{color:#fff}@keyframes toast-in{0%{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}