.toast-container{position:fixed;top:20px;right:20px;z-index:10001;display:flex;flex-direction:column;gap:12px;max-width:400px;width:calc(100% - 40px)}.toast{background:#fff;border-radius:8px;padding:1rem 1.25rem;display:flex;align-items:center;gap:.875rem;box-shadow:0 4px 16px #00000026;animation:toast-slide-in .3s ease;border-left:4px solid;position:relative}@keyframes toast-slide-in{0%{transform:translateX(calc(100% + 20px));opacity:0}to{transform:translateX(0);opacity:1}}.toast.removing{animation:toast-slide-out .3s ease forwards}@keyframes toast-slide-out{0%{transform:translateX(0);opacity:1}to{transform:translateX(calc(100% + 20px));opacity:0}}.toast__icon{font-size:1.5rem;min-width:24px;display:flex;align-items:center;justify-content:center;font-weight:700}.toast__content{flex:1 1;min-width:0}.toast__message{margin:0;font-size:.9375rem;color:#333;line-height:1.4;word-wrap:break-word}.toast__countdown{margin:.25rem 0 0;font-size:.8125rem;color:#666;font-style:italic}.toast__close{background:#0000;border:none;font-size:1.25rem;color:#999;cursor:pointer;padding:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .2s ease;flex-shrink:0}.toast__close:hover{background-color:#0000000d;color:#333}.toast--success{border-left-color:#4caf50}.toast--success .toast__icon{color:#4caf50}.toast--error{border-left-color:#f44336}.toast--error .toast__icon{color:#f44336}.toast--warning{border-left-color:#ff9800}.toast--warning .toast__icon{color:#ff9800}.toast--info{border-left-color:#2196f3}.toast--info .toast__icon{color:#2196f3}@media (max-width:768px){.toast-container{top:10px;right:10px;left:10px;max-width:none;width:auto}.toast{padding:.875rem 1rem}.toast__message{font-size:.875rem}}.toast__close:focus{outline:2px solid #c8e6c9;outline-offset:2px}