/* Local CSS replaces the animation engine and its remote WASM dependency. */
.local-bot { display:grid; place-items:center; min-width:64px; min-height:64px; }
.local-bot span { display:block; width:58px; height:46px; border-radius:18px; background:#e5f4ef; border:2px solid #94c7b6; position:relative; animation:local-bob 3s ease-in-out infinite; }
.local-bot span::before,.local-bot span::after { content:""; position:absolute; top:18px; width:7px; height:10px; border-radius:4px; background:#1f5547; }
.local-bot span::before { left:14px; } .local-bot span::after { right:14px; }
@keyframes local-bob { 50% { transform:translateY(-5px); } }
@media(prefers-reduced-motion:reduce) { .local-bot span { animation:none; } }
