/* anno-list.css —— 标注面板列表区（状态页签 + 已关闭徽标），2026-09-21
   为什么不写进 styles.css：它已 1630 行 > 800 行棘轮（tools/source-complexity-check.mjs 只许缩小），
   同 rec-editor.css 的做法：新增职责另起一个文件。
   边界一：`.anno-badge-*` 的显隐仍由 styles.css 的 body:not(.acc-on):not(.anno-on) 规则统管，
   这里只补「已关闭」这一档配色，不重复定义显隐。 */
.anno-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.anno-tab { border: 1px solid #cbd5e1; background: #ffffff; color: #334155; border-radius: 999px;
  padding: 3px 10px; font-size: 11.5px; cursor: pointer; }
.anno-tab:hover { border-color: #94a3b8; }
.anno-tab.on { background: #1d4ed8; border-color: #1d4ed8; color: #ffffff; font-weight: 600; }
.anno-badge-closed { background: #e0e7ff; color: #3730a3; }
