/* 补充交互状态，不覆盖参考站已有布局与视觉样式。 */
[hidden] { display: none !important; }
.atlas-toast { display:flex; align-items:center; gap:10px; width:fit-content; max-width:350px; margin:0 auto; padding:12px 16px; color:#fff; background:#0d47a1; border-radius:12px; font-weight:700; line-height:1.3; box-shadow:0 3px 10px #0002; pointer-events:auto; animation:atlas-toast-in .2s ease-out; }
.atlas-toast-icon { display:flex; align-items:center; justify-content:center; flex-shrink:0; width:20px; height:20px; border-radius:50%; background:#ff4b4b; font-size:18px; }
.atlas-toast-icon.success { background:#61d345; font-size:14px; }
@keyframes atlas-toast-in { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
