.toast-container{position:fixed;display:flex;flex-direction:column;gap:10px;padding:20px;z-index:100001;pointer-events:none;}.toast-pos-top{top:0;left:0;right:0;align-items:center;}.toast-pos-bottom{bottom:0;left:0;right:0;align-items:center;justify-content:flex-end;}.toast-pos-left{top:0;bottom:0;left:0;justify-content:center;}.toast-pos-right{top:0;bottom:0;right:0;justify-content:center;}.toast-pos-top-right{top:0;right:0;}.toast-pos-top-left{top:0;left:0;}.toast-pos-bottom-right{bottom:0;right:0;flex-direction:column-reverse;}.toast-pos-bottom-left{bottom:0;left:0;flex-direction:column-reverse;}.toast-box{pointer-events:auto;min-width:250px;max-width:350px;background:#fff;border-left:5px solid #ccc;box-shadow:0 4px 12px rgba(0,0,0,0.15);border-radius:4px;padding:12px 16px;display:flex;align-items:flex-start;gap:12px;opacity:0;transform:translateY(-14px);animation:toastSlideDown 0.25s ease-out forwards;font-family:sans-serif;font-size:14px;}.toast-success{border-color:#2ecc71;}.toast-success .toast-title{color:#2ecc71;}.toast-error{border-color:#e74c3c;}.toast-error .toast-title{color:#e74c3c;}.toast-warning{border-color:#f1c40f;}.toast-warning .toast-title{color:#f1c40f;}.toast-info{border-color:#3498db;}.toast-info .toast-title{color:#3498db;}.toast-content{display:flex;flex-direction:column;gap:4px;}.toast-title{font-weight:bold;font-size:15px;margin:0;}.toast-message{color:#555;margin:0;line-height:1.4;}.toast-img{width:24px;height:24px;object-fit:contain;}.toast-pan-body{font-size:13px;line-height:1.4;}.toast-pan-body kbd{display:inline-block;padding:0 4px;border-radius:3px;background:#f2f2f2;border:1px solid #ccc;font-family:"Segoe UI",sans-serif;font-size:12px;}.toast-pan-controls{display:flex;flex-direction:column;gap:2px;}.toast-hiding{animation:toastSlideUp 0.2s ease-in forwards;}@keyframes toastSlideDown{from{opacity:0;transform:translateY(-14px);}to{opacity:1;transform:translateY(0);}}@keyframes toastSlideUp{from{opacity:1;transform:translateY(0);}to{opacity:0;transform:translateY(-14px);}}