/* terminal-card.css - BOMLLM manual scaffold_v1
   dark ink terminal card, mono font, window dots + sanitized machine title
   line classes: .ok (brand) .warn (gold) .err (red) .dim (mute) .cmt (comment) */
.tcard{background:#0d1b15;border:1px solid #1d3329;border-radius:10px;overflow:hidden;
  font-family:'JetBrains Mono',monospace;font-size:13px;line-height:1.7;color:#cfe0d6;
  box-shadow:0 8px 28px rgba(0,0,0,.35)}
.tcard-head{display:flex;align-items:center;gap:10px;padding:9px 14px;background:#0a1512;
  border-bottom:1px solid #1d3329}
.tcard-dots{display:flex;gap:6px}
.tcard-dots i{width:11px;height:11px;border-radius:50%;display:block}
.tcard-dots i.r{background:#e05555}.tcard-dots i.y{background:#d8b04a}.tcard-dots i.g{background:#00ab6b}
.tcard-title{font-size:11.5px;letter-spacing:.1em;color:#6e8378}
.tcard-title b{color:#c8a24a;font-weight:400}
.tcard-body{margin:0;padding:14px 16px;overflow-x:auto}
.tcard-body .ln{display:block;white-space:pre}
.tcard-body .ok{color:#00ab6b}
.tcard-body .warn{color:#c8a24a}
.tcard-body .err{color:#e05555}
.tcard-body .dim{color:#6e8378}
.tcard-body .cmt{color:#4f6a5e;font-style:italic}
.tcard-cap{padding:8px 16px;border-top:1px solid #1d3329;font-size:11.5px;color:#6e8378;
  font-family:'IBM Plex Sans Thai',sans-serif;letter-spacing:.02em}

/* chat mock card */
.chatcard{max-width:420px;background:#0d1b15;border:1px solid #1d3329;border-radius:14px;overflow:hidden;
  font-family:'IBM Plex Sans Thai',sans-serif}
.chatcard-head{display:flex;align-items:center;gap:10px;padding:10px 14px;background:#0a1512;
  border-bottom:1px solid #1d3329;font-size:13px;color:#9fb3a8}
.chatcard-head .cavatar{width:30px;height:30px;border-radius:50%;background:#132a22;
  border:1px solid #00ab6b;display:flex;align-items:center;justify-content:center;
  font-family:'Cormorant Garamond',serif;color:#c8a24a;font-size:16px}
.chatcard-body{padding:14px;display:flex;flex-direction:column;gap:10px}
.bubble{max-width:82%;padding:9px 13px;border-radius:14px;font-size:14.5px;line-height:1.6}
.bubble.user{align-self:flex-end;background:#0e3d28;border:1px solid #00ab6b;border-bottom-right-radius:4px}
.bubble.bot{align-self:flex-start;background:#13201b;border:1px solid #1d3329;border-bottom-left-radius:4px;color:#f2ede4}
.chatcard-cap{padding:8px 14px;border-top:1px solid #1d3329;font-size:11.5px;color:#6e8378}
