.toast-container{position:fixed;top:20px;right:20px;z-index:9999;display:flex;flex-direction:column;gap:12px;max-width:400px;pointer-events:none}.toast{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-radius:8px;font-size:14px;font-weight:500;line-height:20px;box-shadow:0 4px 12px rgba(0,0,0,.15);animation:slideInRight .3s ease-out;pointer-events:auto}@keyframes slideInRight{0%{transform:translateX(400px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes slideOutRight{0%{transform:translateX(0);opacity:1}to{transform:translateX(400px);opacity:0}}.toast--success{background-color:#22c55e;color:#fff;border-left:4px solid #16a34a}.toast--error{background-color:#ef4444;color:#fff;border-left:4px solid #dc2626}.toast--info{background-color:#3b82f6;color:#fff;border-left:4px solid #2563eb}.toast--warning{background-color:#f59e0b;color:#fff;border-left:4px solid #d97706}.toast__content{gap:12px;flex:1}.toast__content,.toast__icon{display:flex;align-items:center}.toast__icon{justify-content:center;width:24px;height:24px;font-size:16px;font-weight:700;flex-shrink:0}.toast__message{word-wrap:break-word;word-break:break-word}.toast__close{display:flex;align-items:center;justify-content:center;width:24px;height:24px;margin-left:12px;background:transparent;border:none;color:inherit;font-size:20px;font-weight:700;cursor:pointer;opacity:.7;transition:opacity .2s ease;flex-shrink:0}.toast__close:hover{opacity:1}@media (max-width:480px){.toast-container{top:10px;right:10px;left:10px;max-width:none}.toast{padding:12px 16px;font-size:13px}.toast__icon{width:20px;height:20px;font-size:14px}.toast__close{width:20px;height:20px;font-size:18px}}