/* PayEI admin — the ResolveRT look (Data n Algos family), three panels: the chat small on
   the left, the display big in the middle, details on the right.
   Data n Algos family palette: high-contrast black/white with the decisive
   red accent, in both day and night modes (Ankit's ruling 2026-09-03).
   Theme: [data-theme="dark"|"light"] on <html>, else follows the OS. */
:root {
  --bg: #ffffff;
  --panel: #f4f4f4;
  --card: #ffffff;
  --ink: #111111;
  --muted: #6a6a6a;
  --line: #e2e2e2;
  --accent: #e50914;
  --accent-ink: #ffffff;
  --sys-bg: #f1f1f1; --sys-ink: #444444; --sys-line: #dddddd;
  --shadow: 0 1px 2px rgba(0,0,0,.07), 0 6px 16px rgba(0,0,0,.10), 0 16px 40px rgba(0,0,0,.08);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.08), 0 3px 8px rgba(0,0,0,.07);
  --panel-edge: transparent;
  --pill-open: #e8eefc;      --pill-open-ink: #2b4faf;
  --pill-progress: #fff3d9;  --pill-progress-ink: #8a5b00;
  --pill-waiting: #f3e8fc;   --pill-waiting-ink: #6b2baf;
  --pill-resolved: #e2f5ec;  --pill-resolved-ink: #1d7a52;
  --pill-closed: #ececec;    --pill-closed-ink: #666666;
  --pill-triage: #fdeceb;    --pill-triage-ink: #b3423a;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg: #0c0c0c;
    --panel: #171717;
    --card: #212121;
    --ink: #f2f2f2;
    --muted: #9a9a9a;
    --line: #2e2e2e;
    --sys-bg: #1c1c1c; --sys-ink: #bdbdbd; --sys-line: #333333;
    --shadow: 0 1px 2px rgba(0,0,0,.7), 0 8px 20px rgba(0,0,0,.55), 0 22px 50px rgba(0,0,0,.5);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.6), 0 4px 10px rgba(0,0,0,.45);
    --panel-edge: #2a2a2a;
    --pill-open: #1d2a4d;      --pill-open-ink: #9db8f5;
    --pill-progress: #3a2d10;  --pill-progress-ink: #e8bb62;
    --pill-waiting: #32204d;   --pill-waiting-ink: #cba6f0;
    --pill-resolved: #14352a;  --pill-resolved-ink: #6fd3a6;
    --pill-closed: #2a2a2a;    --pill-closed-ink: #9a9a9a;
    --pill-triage: #3d1a18;    --pill-triage-ink: #f08a82;
  }
}
html[data-theme="dark"] {
  --bg: #0c0c0c;
  --panel: #171717;
  --card: #212121;
  --ink: #f2f2f2;
  --muted: #9a9a9a;
  --line: #2e2e2e;
  --sys-bg: #1c1c1c; --sys-ink: #bdbdbd; --sys-line: #333333;
  --shadow: 0 1px 2px rgba(0,0,0,.7), 0 8px 20px rgba(0,0,0,.55), 0 22px 50px rgba(0,0,0,.5);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.6), 0 4px 10px rgba(0,0,0,.45);
  --panel-edge: #2a2a2a;
  --pill-open: #1d2a4d;      --pill-open-ink: #9db8f5;
  --pill-progress: #3a2d10;  --pill-progress-ink: #e8bb62;
  --pill-waiting: #32204d;   --pill-waiting-ink: #cba6f0;
  --pill-resolved: #14352a;  --pill-resolved-ink: #6fd3a6;
  --pill-closed: #2a2a2a;    --pill-closed-ink: #9a9a9a;
  --pill-triage: #3d1a18;    --pill-triage-ink: #f08a82;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font: 13.5px/1.5 "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
       color: var(--ink); background: var(--bg); display: flex; flex-direction: column; }
button { font: inherit; cursor: pointer; border: 0; border-radius: 8px; padding: 7px 14px; font-weight: 600; }
button.primary { background: var(--accent); color: var(--accent-ink);
                 box-shadow: 0 2px 6px rgba(229,9,20,.35), 0 6px 16px rgba(229,9,20,.18); }
button.ghost { background: transparent; color: inherit; border: 1px solid var(--line); }
input, select, textarea { font: inherit; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); color: var(--ink); }
.mono { font-family: ui-monospace, "Cascadia Mono", monospace; }
.muted { color: var(--muted); }
.empty { color: var(--muted); padding: 8px 2px; }

/* top bar — wordmark header */
#topbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px 6px; }
.brand { font-size: 1.05rem; font-weight: 800; letter-spacing: .12em; }
.brand span { color: var(--accent); }

/* user drop-down panel */
#user-menu { position: relative; }
#user-btn { font-size: .82rem; padding: 6px 12px; }
#user-panel { position: absolute; right: 0; top: calc(100% + 6px); z-index: 30; width: 230px;
              background: var(--card); border: 1px solid var(--line); border-radius: 12px;
              box-shadow: 0 10px 34px rgba(0,0,0,.28); padding: 8px; }
.up-identity { font-size: .8rem; color: var(--muted); padding: 6px 10px 8px; word-break: break-all; }
.up-divider { height: 1px; background: var(--line); margin: 6px 4px; }
.up-item { display: flex; justify-content: space-between; align-items: center; width: 100%;
           text-align: left; background: transparent; border: 0; border-radius: 8px;
           padding: 8px 10px; font-weight: 600; font-size: .84rem; color: var(--ink); }
.up-item:hover:not(:disabled) { background: var(--panel); }
.up-item:disabled { color: var(--muted); cursor: default; font-weight: 400; }
.up-item.active-view { color: var(--accent); }
.soon { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
        background: var(--panel); border-radius: 999px; padding: 2px 7px; color: var(--muted); }

/* the three panels: 1 : 2 : 1, chat in the middle */
#app { flex: 1; min-height: 0; display: grid; grid-template-columns: minmax(280px, 1fr) 3fr 1fr; gap: 12px; padding: 10px 14px 14px; }
.panel { background: var(--panel); border-radius: 14px; box-shadow: var(--shadow);
         border: 1px solid var(--panel-edge);
         display: flex; flex-direction: column; min-height: 0; overflow: hidden; }
.panel-head { padding: 12px 14px 8px; }
.panel-head.row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.panel-title { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
               white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.panel-sub { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.panel-body { flex: 1; min-height: 0; overflow-y: auto; padding: 4px 14px 14px; }
.section-label { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 12px 0 4px; }

/* left panel lists */
#left-panel ul { list-style: none; margin: 0; padding: 0; }
#left-panel li { padding: 7px 10px; border-radius: 8px; cursor: pointer; background: var(--card);
                 margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
                 border: 1px solid transparent; color: var(--ink); box-shadow: var(--shadow-sm); }
#left-panel li:hover { border-color: var(--line); }
#left-panel li.active { border-color: var(--accent); color: var(--accent); font-weight: 700; }
#left-panel li .badge { float: right; font-size: .72rem; color: var(--muted); }

/* a conversation in the rail: the id, its type, and its facts under a caret */
#left-panel li.thread { white-space: normal; padding: 6px 8px 6px 10px; }
.thread-row { display: flex; align-items: center; gap: 8px; }
.thread-name { flex: 1; font-size: .8rem; overflow: hidden; text-overflow: ellipsis; }
.thread-tag { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
              color: var(--muted); background: var(--panel); border-radius: 999px; padding: 2px 8px; }
.thread-del { background: transparent; border: 0; color: var(--muted); padding: 0 3px;
              font-size: 1rem; line-height: 1; opacity: 0; transition: opacity .12s ease; }
#left-panel li.thread:hover .thread-del, .thread-del:focus { opacity: 1; }
.thread-del:hover { color: var(--accent); }
.thread-caret { background: transparent; border: 0; color: var(--muted); padding: 0 2px;
                font-size: .95rem; line-height: 1; transition: transform .12s ease; }
.thread-caret.open { transform: rotate(90deg); }
.thread-detail { margin: 7px 0 2px; padding-top: 7px; border-top: 1px solid var(--line);
                 display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; font-size: .74rem; }
.thread-detail > div { display: contents; }
.thread-detail dt { color: var(--muted); }
.thread-detail dd { margin: 0; text-align: right; overflow: hidden; text-overflow: ellipsis; }
#new-thread { margin-top: 10px; width: 100%; }

/* middle: chat */
#messages { display: flex; flex-direction: column; gap: 8px; }
.msg { max-width: 72ch; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; box-shadow: var(--shadow-sm); }
.msg { position: relative; }
.msg .who { font-weight: 700; font-size: .8rem; }
.edited { color: var(--muted); font-size: .66rem; margin-left: 8px; font-style: italic; }

/* your own words carry a menu; it stays out of the way until you look for it */
.msg-menu { position: absolute; top: 4px; right: 4px; background: transparent; border: 0;
            color: var(--muted); padding: 2px 7px; line-height: 1; font-size: .95rem;
            opacity: 0; transition: opacity .12s ease; }
.msg:hover .msg-menu, .msg-menu:focus { opacity: 1; }
.msg-menu:hover { color: var(--ink); }
.line-menu { position: absolute; top: 26px; right: 4px; z-index: 20; min-width: 118px;
             background: var(--card); border: 1px solid var(--line); border-radius: 9px;
             box-shadow: 0 10px 28px rgba(0,0,0,.32); padding: 5px; display: flex; flex-direction: column; }
.line-menu button { background: transparent; border: 0; text-align: left; color: var(--ink);
                    padding: 6px 9px; border-radius: 6px; font-size: .8rem; font-weight: 600; }
.line-menu button:hover:not(:disabled) { background: var(--panel); }
.line-menu button:disabled { color: var(--muted); cursor: default; font-weight: 400; }
.line-menu button.danger { color: var(--accent); }
.edit-box { width: 100%; font-size: .9rem; }
.msg .when { color: var(--muted); font-size: .7rem; margin-left: 8px; }
.msg.system { background: var(--sys-bg); border-color: var(--sys-line); color: var(--sys-ink); font-size: .86rem; }
/* The browser's [hidden] rule is `[hidden] { display: none }` — specificity
   (0,1,0). Any ID rule that sets `display` outranks it, so `el.hidden = true`
   silently does nothing. #composer had exactly that bug: the message box stayed
   visible with no conversation open, and Send posted to /api/tickets/null.
   Stated once, for every element that relies on the attribute. */
[hidden] { display: none !important; }

/* The convo panel's own actions. `+ New conversation` lives here rather than in
   the left rail: starting one is something you do TO a conversation you already
   have, not a thing you go elsewhere to request. Disabled until there is one. */
/* The intent buttons: what the person thinks this conversation is. Declared
   vocabulary, rendered from AttrTable, never hardcoded in the markup. The word
   is the whole button — the declared meaning is the title attribute, not a
   second line of print. */
/* Two columns, not three. With Task there are eleven types; three columns
   leaves an orphan on the last row, two columns divide cleanly and a one-word
   button has no need of the width. */
.intent-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.intent-grid button {
  padding: 9px 8px; border-radius: 8px; font-size: .8rem; font-weight: 600;
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.intent-grid button.wide { grid-column: 1 / -1; }
.intent-grid button.chosen { border-color: var(--accent); color: var(--accent); }

/* A panel body in halves: the top carries what is live, the bottom is held for
   what comes next. Each scrolls on its own so neither can push the other out. */
.panel-body.split { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; overflow: hidden; padding-bottom: 12px; }
.panel-body.split > .half { min-height: 0; overflow-y: auto; }
#right-bottom { border-top: 1px solid var(--line); padding-top: 10px; }
#right-bottom.flash { animation: flash 0.9s ease; }
@keyframes flash { 0%, 100% { background: transparent; } 25% { background: var(--card); } }

/* the directory: people, agents, and RRT */
.dir-search { width: 100%; margin-bottom: 8px; font-size: .8rem; }
#dir-list { list-style: none; margin: 0; padding: 0; }
.dir-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px;
           background: var(--card); margin-bottom: 5px; box-shadow: var(--shadow-sm); }
.dir-who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dir-name { font-size: .8rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dir-id { font-size: .66rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dir-kind { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
            color: var(--muted); }
.dir-kind.system { color: var(--accent); }
.dir-kind.team { color: var(--accent); }
.dir-row.is-team .dir-name::before { content: "◇ "; color: var(--accent); }
.dir-acts { display: flex; gap: 5px; }
.dir-add, .dir-own { font-size: .7rem; padding: 3px 9px; }
.dir-add:disabled, .dir-own:disabled { opacity: .4; cursor: default; }
.dir-own { border-color: var(--accent); color: var(--accent); }
.dir-own.owning { border-color: var(--line); color: var(--muted); }
.dir-empty { color: var(--muted); font-size: .78rem; padding: 6px 2px; }

.head-actions { display: flex; gap: 8px; align-items: center; }

/* who is in the room, under the conversation id */
#room:empty { display: none; }
#room { margin-top: 7px; display: flex; flex-wrap: wrap; gap: 5px; }
.party { font-size: .68rem; font-weight: 600; border-radius: 999px; padding: 2px 9px;
         background: var(--card); border: 1px solid var(--line); color: var(--muted); }
.party.opener { color: var(--ink); }
.party.team { border-color: var(--accent); color: var(--accent); }

/* what has been asserted from this conversation, under its heading */
#assert-strip:empty { display: none; }
#assert-strip { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.assert-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
              background: var(--card); border: 1px solid var(--line); border-radius: 8px;
              padding: 6px 11px; font-size: .78rem; }
.assert-id { font-size: .72rem; color: var(--muted); }
.assert-kind { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
               color: var(--accent); }
.assert-title { flex: 1; min-width: 120px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.assert-owners { display: flex; gap: 5px; }
.owner { font-size: .68rem; font-weight: 600; background: var(--panel); border-radius: 999px; padding: 2px 9px; }
.owner.none { color: var(--muted); font-weight: 400; font-style: italic; }

.dlg-label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .05em;
             text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
#dlg-assert input { width: 100%; }
#dlg-assert menu { display: flex; justify-content: flex-end; gap: 8px; padding: 0; margin: 14px 0 0; }
.head-actions button[disabled] { opacity: .35; cursor: not-allowed; }

#composer { display: flex; gap: 8px; padding: 10px 14px 14px; align-items: center; }
#composer button.icon { padding: 6px 9px; font-size: .92rem; line-height: 1; }
#composer button.icon:disabled { opacity: .3; cursor: not-allowed; }

/* an attached file, rendered as the line it is */
.attachment { display: inline-flex; align-items: center; gap: 8px; margin-top: 2px;
              background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
              padding: 6px 11px; font-weight: 600; font-size: .8rem; color: inherit; max-width: 100%; }
.attachment:hover { border-color: var(--accent); color: var(--accent); }
.att-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.att-size { color: var(--muted); font-size: .72rem; font-weight: 400; }
#composer-author { width: 100px; }
#composer-body { flex: 1; }

/* right: ticket */
.ticket-head { display: flex; justify-content: space-between; align-items: center; }
#ticket h2 { margin: 8px 0 4px; font-size: .95rem; }
.pill { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.pill.open { background: var(--pill-open); color: var(--pill-open-ink); }
.pill.in_progress { background: var(--pill-progress); color: var(--pill-progress-ink); }
.pill.waiting { background: var(--pill-waiting); color: var(--pill-waiting-ink); }
.pill.resolved { background: var(--pill-resolved); color: var(--pill-resolved-ink); }
.pill.closed { background: var(--pill-closed); color: var(--pill-closed-ink); }
.pill.triage { background: var(--pill-triage); color: var(--pill-triage-ink); }
.t-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin: 12px 0; }
.t-meta div { display: flex; flex-direction: column; min-width: 0; }
.t-meta dt { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.t-meta dd { margin: 2px 0 0; }
.t-meta select { width: 100%; }
.t-actions { display: flex; gap: 8px; margin: 8px 0 2px; flex-wrap: wrap; }
#t-comments, #t-members { list-style: none; padding: 0; margin: 4px 0; display: flex; flex-direction: column; gap: 6px; }
#t-comments li, #t-members li { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px; font-size: .85rem; box-shadow: var(--shadow-sm); }
#t-comments .who, #t-members .who { font-weight: 700; font-size: .78rem; }
#t-members li { display: flex; justify-content: space-between; gap: 8px; }
#btn-watch { font-size: .78rem; padding: 5px 10px; white-space: nowrap; }
#comment-form { display: flex; gap: 6px; margin-top: 8px; }
#comment-form input { flex: 1; min-width: 0; }

/* a protocol result, in the conversation where it belongs */
.msg.notice { max-width: none; }
.msg.notice.fail { border-color: var(--accent); }
.notice-title { font-weight: 700; font-size: .84rem; margin-bottom: 9px; }
.msg.notice.fail .notice-title { color: var(--accent); }
.notice-checks, .notice-warn { list-style: none; margin: 0; padding: 0; }
.notice-checks li { display: grid; grid-template-columns: 16px 54px 1fr; gap: 2px 8px;
                    align-items: baseline; padding: 5px 0; font-size: .8rem;
                    border-top: 1px solid var(--line); }
.notice-checks li:first-child { border-top: 0; }
.notice-checks .mark { font-weight: 700; }
.notice-checks li.ok .mark { color: #3fb950; }
.notice-checks li.bad .mark { color: var(--accent); }
.notice-checks .step { color: var(--muted); font-size: .68rem; font-weight: 700;
                       letter-spacing: .04em; text-transform: uppercase; }
.notice-checks .what { font-weight: 600; }
.notice-checks .why { grid-column: 3; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.notice-sub { margin: 12px 0 5px; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
              text-transform: uppercase; color: var(--muted); }
.notice-warn li { color: var(--muted); font-size: .76rem; padding: 2px 0 2px 14px; position: relative; }
.notice-warn li::before { content: "·"; position: absolute; left: 4px; }

/* toasts — a passing remark, over the middle of the app, in our own colours */
#toasts { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%);
          z-index: 60; display: flex; flex-direction: column; align-items: center; gap: 8px;
          pointer-events: none; }
.toast { background: var(--card); border: 1px solid var(--line); border-radius: 10px;
         box-shadow: 0 10px 30px rgba(0,0,0,.34); padding: 9px 16px; font-size: .82rem;
         font-weight: 600; color: var(--ink); max-width: min(520px, 88vw);
         opacity: 1; transition: opacity .3s ease, transform .3s ease; }
.toast.going { opacity: 0; transform: translateY(6px); }
.toast.warn { border-color: var(--accent); }
.toast.warn::before { content: "⚠ "; color: var(--accent); }

/* dialog */
dialog { border: 0; border-radius: 14px; padding: 20px; width: min(440px, 90vw);
         box-shadow: 0 12px 40px rgba(0,0,0,.35); font: inherit; background: var(--card); color: var(--ink); }
dialog::backdrop { background: rgba(0,0,0,.5); }
dialog h2 { margin: 0 0 12px; font-size: 1rem; }
dialog menu { display: flex; justify-content: flex-end; gap: 8px; padding: 0; margin: 16px 0 0; }
/* the one dialog every ask goes through */
#dlg-ask h2 { font-size: 1rem; }
#dlg-ask .dlg-sub { margin: 0 0 4px; font-size: .84rem; line-height: 1.5; color: var(--muted); }
#dlg-ask #ask-input { width: 100%; margin-top: 12px; }
#dlg-ask button.danger { background: var(--accent); color: var(--accent-ink); }

/* statistics dialog */
#stats-body table { border-collapse: collapse; width: 100%; font-size: .86rem; }
#stats-body th, #stats-body td { text-align: left; padding: 5px 10px; border-bottom: 1px solid var(--line); }
#stats-body td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
#stats-body h3 { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 12px 0 4px; }

@media (max-width: 980px) {
  #app { grid-template-columns: 1fr 2fr; }
  #side-panel { display: none; }
}
@media (max-width: 640px) {
  #app { grid-template-columns: 1fr; }
  #chat-panel { display: none; }
}

/* identity: the simulated SSO picker */
#user-btn.identified { border-color: var(--accent); color: var(--accent); font-weight: 700; }
.dlg-sub { margin: -6px 0 14px; font-size: .8rem; }
#users-body { display: grid; gap: 8px; }
.user-card { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; width: 100%; text-align: left;
             background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
             padding: 10px 14px; color: var(--ink); box-shadow: var(--shadow-sm); }
.user-card:hover { border-color: var(--accent); }
.uc-name { font-weight: 700; font-size: .92rem; }
.uc-meta { grid-column: 1; font-size: .76rem; color: var(--muted); font-weight: 400; }
.uc-load { grid-row: 1 / span 2; align-self: center; font-size: .72rem; color: var(--muted);
           background: var(--card); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
/* your own messages, so a multi-window conversation reads at a glance */
.msg.mine { border-color: var(--accent); }
.msg.mine .who { color: var(--accent); }
.note { font-size: .76rem; margin: 10px 0 0; }

/* PayEI: the chat lives in the left panel, so its messages and composer sit there */
#chat-panel #messages { display: flex; flex-direction: column; gap: 8px; }
#chat-panel .msg { max-width: none; }
#display-panel .panel-body { display: flex; flex-direction: column; }
#threads { list-style: none; margin: 0; padding: 0; }
#threads:empty + #threads-empty { display: block; }
#threads:not(:empty) + #threads-empty { display: none; }
#chat-panel #composer { padding: 10px 12px 12px; }
#chat-panel #composer-body { flex: 1; min-width: 0; }
