/* posti Mac-like design system · Buzzvid dark theme + Mac 的 interaction 骨格
 * 使用: 直感的 UI (canvas · timeline · inspector · 3-pane) を dark 背景 で 提供。
 * 2026-08-23: user 指示 で light → dark に revert · Buzzvid brand と 一貫。
 * reading-mode (guides · vs · changelog · security · status) は body に class 追加で light 化。
 */

/* ── editor-paper (Notion paper on dark) ──
   admin editor の 「実際 に user が 文字 を書き込む box」 だけ 白紙化。
   chrome/list/nav は dark のまま · box 内 (Quill · textarea · Flex JSON 等) だけ
   Notion 風 の 白紙 で 「今書いてる text」 が 読みやすくなる。 */
.editor-paper,
.editor-paper input,
.editor-paper textarea,
.editor-paper .ql-editor,
textarea.editor-paper,
.ql-container.editor-paper .ql-editor {
  background: #ffffff !important;
  color: #1d1d1f !important;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
                "Hiragino Sans", "Yu Gothic UI", sans-serif;
  line-height: 1.7;
  min-height: 240px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.20);
}
.editor-paper::placeholder,
.editor-paper textarea::placeholder,
.editor-paper input::placeholder { color: #86868b; }
.editor-paper:focus,
.editor-paper textarea:focus,
.editor-paper input:focus { outline: none; border-color: #a855f7; box-shadow: 0 0 0 3px rgba(168,85,247,0.15), 0 1px 3px rgba(0,0,0,0.20); }
/* Quill toolbar は dark 保持 · editor 部分 だけ 白 */
.ql-toolbar.ql-snow { background: var(--m-fill); border-color: rgba(0,0,0,0.10); color: var(--m-text-2); }
.ql-container.ql-snow { border-color: rgba(0,0,0,0.10); background: #ffffff; color: #1d1d1f; }
.ql-container.ql-snow .ql-editor { background: #ffffff; color: #1d1d1f; min-height: 300px; }
.ql-snow .ql-picker, .ql-snow .ql-stroke { color: var(--m-text-2); stroke: var(--m-text-2); }

/* ── design tokens · Buzzvid dark palette ─────────────────── */
:root {
  --m-bg:            #eef1f6;   /* body (light gray so白カードが立つ) */
  --m-bg-elev:       #ffffff;   /* panel (white) */
  --m-fill:          #e6ebf2;   /* secondary fill */
  --m-fill-2:        #dbe2ec;   /* tertiary / hover */
  --m-line:          #dbe1ea;   /* 実線の見える枠 */
  --m-line-strong:   #c6cfdb;
  --m-text:          #16223b;   /* label */
  --m-text-2:        #3d4859;   /* secondary (やや濃く) */
  --m-text-3:        #6b7280;   /* tertiary */
  --m-accent:        #7c3aed;   /* Buzzvid purple (light-adjusted) */
  --m-accent-hover:  #6d28d9;
  --m-accent-fill:   rgba(124,58,237,0.10);
  --m-success:       #0a8457;
  --m-warning:       #d97706;
  --m-error:         #dc2626;

  /* radius (Apple: 10px card · 6px button · 22px pill) */
  --m-r-xs: 4px;
  --m-r-sm: 6px;
  --m-r:    10px;
  --m-r-lg: 16px;
  --m-r-pill: 999px;

  /* shadow (subtle · Apple 系) */
  --m-shadow-1: 0 1px 2px rgba(0,0,0,0.06);
  --m-shadow-2: 0 4px 12px rgba(0,0,0,0.08);
  --m-shadow-3: 0 12px 32px rgba(0,0,0,0.12);
  --m-shadow-inset: inset 0 0 0 1px var(--m-line);

  /* motion (short · ease-out) */
  --m-t-fast: 120ms;
  --m-t:      200ms;
  --m-easing: cubic-bezier(0.32, 0.72, 0, 1);

  /* spacing · 8pt grid */
  --m-sp-1: 4px;
  --m-sp-2: 8px;
  --m-sp-3: 12px;
  --m-sp-4: 16px;
  --m-sp-5: 24px;
  --m-sp-6: 32px;
  --m-sp-7: 48px;
  --m-sp-8: 64px;

  /* typography */
  --m-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
            "Hiragino Sans", "Yu Gothic UI", "Segoe UI", sans-serif;
  --m-font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

}

/* ── reset ─────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--m-font);
  color: var(--m-text);
  background: var(--m-bg);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  letter-spacing: -0.005em;
}
a { color: var(--m-accent); text-decoration: none; }
a:hover { color: var(--m-accent-hover); }
button { font-family: inherit; }

/* ── typography ────────────────────────────────────────────── */
.m-title-1  { font-size: 34px; font-weight: 700; letter-spacing: -0.021em; line-height: 1.15; }
.m-title-2  { font-size: 28px; font-weight: 700; letter-spacing: -0.019em; line-height: 1.2;  }
.m-title-3  { font-size: 22px; font-weight: 600; letter-spacing: -0.014em; line-height: 1.25; }
.m-headline { font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.m-body     { font-size: 15px; font-weight: 400; }
.m-callout  { font-size: 15px; font-weight: 600; }
.m-subhead  { font-size: 13px; font-weight: 600; color: var(--m-text-2); text-transform: uppercase; letter-spacing: 0.06em; }
.m-footnote { font-size: 13px; color: var(--m-text-2); }
.m-caption  { font-size: 12px; color: var(--m-text-3); }

/* ── layout · 3-pane app shell ─────────────────────────────── */
.m-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.m-shell.has-inspector {
  grid-template-columns: 240px 1fr 340px;
}
.m-sidebar {
  background: var(--m-fill);
  border-right: 1px solid var(--m-line);
  padding: var(--m-sp-4) var(--m-sp-3);
  overflow-y: auto;
  position: sticky; top: 0; height: 100vh;
}
.m-main {
  padding: var(--m-sp-6);
  overflow-y: auto;
}
.m-inspector {
  background: var(--m-bg-elev);
  border-left: 1px solid var(--m-line);
  padding: var(--m-sp-5);
  overflow-y: auto;
  position: sticky; top: 0; height: 100vh;
}
@media (max-width: 900px) {
  .m-shell, .m-shell.has-inspector { grid-template-columns: 1fr; }
  .m-sidebar, .m-inspector { position: static; height: auto; }
}

/* ── sidebar nav ───────────────────────────────────────────── */
.m-nav-brand {
  padding: var(--m-sp-2) var(--m-sp-3) var(--m-sp-5);
  font-size: 21px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--m-text);
  display: flex; align-items: center; gap: 8px;
}
.m-nav-brand .m-logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: inline-flex; align-items: center; justify-content: center;
}
.m-nav-brand .m-logo-mark svg { width: 15px; height: 15px; }
.m-nav-brand .i { color: var(--m-accent); }
.m-nav-group { margin-bottom: var(--m-sp-4); }
.m-nav-group-label {
  font-size: 11px; font-weight: 600; color: var(--m-text-3);
  padding: var(--m-sp-1) var(--m-sp-3);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.m-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; margin: 1px 0;
  border-radius: var(--m-r-sm);
  color: var(--m-text);
  font-size: 14px; font-weight: 500;
  transition: background var(--m-t-fast);
}
.m-nav-item:hover { background: var(--m-fill-2); }
.m-nav-item.active { background: var(--m-accent-fill); color: var(--m-accent); }
.m-nav-item .icon { width: 18px; height: 18px; opacity: 0.75; }

/* ── button ────────────────────────────────────────────────── */
.m-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 32px; padding: 0 16px;
  background: var(--m-fill);
  border: 1px solid transparent;
  border-radius: var(--m-r-sm);
  color: var(--m-text);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all var(--m-t-fast) var(--m-easing);
}
.m-btn:hover { background: var(--m-fill-2); }
.m-btn:active { transform: scale(0.97); }
.m-btn-primary {
  background: var(--m-accent); color: #fff;
}
.m-btn-primary:hover { background: var(--m-accent-hover); }
.m-btn-ghost { background: transparent; }
.m-btn-ghost:hover { background: var(--m-fill); }
.m-btn-danger { color: var(--m-error); }
.m-btn-danger:hover { background: rgba(255,59,48,0.08); }
.m-btn-lg { height: 40px; padding: 0 20px; font-size: 15px; }
.m-btn-sm { height: 26px; padding: 0 10px; font-size: 13px; }
.m-btn-icon { width: 32px; padding: 0; }

/* ── card ──────────────────────────────────────────────────── */
.m-card {
  background: var(--m-bg-elev);
  border: 1px solid var(--m-line);
  border-radius: var(--m-r);
  padding: var(--m-sp-4);
  transition: box-shadow var(--m-t) var(--m-easing), transform var(--m-t) var(--m-easing);
}
.m-card-hover:hover {
  box-shadow: var(--m-shadow-2);
  transform: translateY(-1px);
}
.m-card-lg { padding: var(--m-sp-5); border-radius: var(--m-r-lg); }
.m-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--m-sp-3); }
.m-card-title { font-size: 17px; font-weight: 600; }

/* ── input ─────────────────────────────────────────────────── */
.m-input {
  width: 100%; height: 32px;
  padding: 0 12px;
  background: var(--m-bg-elev);
  border: 1px solid var(--m-line-strong);
  border-radius: var(--m-r-sm);
  color: var(--m-text);
  font-size: 14px; font-family: inherit;
  transition: border-color var(--m-t-fast), box-shadow var(--m-t-fast);
}
.m-input:focus {
  outline: none;
  border-color: var(--m-accent);
  box-shadow: 0 0 0 3px var(--m-accent-fill);
}
.m-input-lg { height: 40px; font-size: 15px; }
textarea.m-input { height: auto; padding: 8px 12px; resize: vertical; min-height: 80px; line-height: 1.5; }
.m-label { display: block; font-size: 13px; font-weight: 600; color: var(--m-text-2); margin-bottom: 6px; }
.m-field { margin-bottom: var(--m-sp-4); }
.m-hint { font-size: 12px; color: var(--m-text-3); margin-top: 4px; }

/* ── segmented control (tabs) ──────────────────────────────── */
.m-segmented {
  display: inline-flex;
  background: var(--m-fill);
  border-radius: var(--m-r-sm);
  padding: 2px;
  gap: 2px;
}
.m-segmented button {
  padding: 5px 14px; border: 0; background: transparent;
  border-radius: 4px; font-size: 13px; font-weight: 500;
  color: var(--m-text); cursor: pointer;
  transition: all var(--m-t-fast);
}
.m-segmented button.active { background: var(--m-bg-elev); box-shadow: var(--m-shadow-1); }

/* ── badge ─────────────────────────────────────────────────── */
.m-badge {
  display: inline-block;
  padding: 2px 8px; border-radius: var(--m-r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  background: var(--m-fill); color: var(--m-text-2);
}
.m-badge-success { background: rgba(52,199,89,0.14); color: #248a3d; }
.m-badge-warning { background: rgba(255,149,0,0.16); color: #c76a00; }
.m-badge-error   { background: rgba(255,59,48,0.14); color: #c8241c; }
.m-badge-accent  { background: var(--m-accent-fill); color: var(--m-accent); }

/* ── timeline (LINE step / mail step) ──────────────────────── */
.m-timeline {
  position: relative;
  padding: var(--m-sp-4) 0;
  max-width: 480px;
  margin: 0 auto;
}
.m-timeline::before {
  content: "";
  position: absolute; left: 26px; top: 0; bottom: 0;
  width: 2px; background: var(--m-line);
}
.m-timeline-node {
  position: relative;
  display: flex; gap: var(--m-sp-4);
  padding: var(--m-sp-3) 0;
  cursor: pointer;
}
.m-timeline-dot {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: var(--m-bg-elev);
  border: 2px solid var(--m-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: all var(--m-t) var(--m-easing);
  z-index: 1;
}
.m-timeline-node.active .m-timeline-dot,
.m-timeline-node:hover .m-timeline-dot {
  border-color: var(--m-accent);
  background: var(--m-accent-fill);
  transform: scale(1.05);
}
.m-timeline-card {
  flex: 1;
  background: var(--m-bg-elev);
  border: 1px solid var(--m-line);
  border-radius: var(--m-r);
  padding: var(--m-sp-3) var(--m-sp-4);
  transition: all var(--m-t) var(--m-easing);
}
.m-timeline-node:hover .m-timeline-card { box-shadow: var(--m-shadow-2); transform: translateX(4px); }
.m-timeline-delay { font-size: 12px; color: var(--m-text-3); margin-bottom: 4px; }
.m-timeline-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.m-timeline-preview { font-size: 13px; color: var(--m-text-2); line-height: 1.4; max-height: 2.8em; overflow: hidden; }
.m-timeline-add {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0 10px 26px;
  color: var(--m-accent); font-size: 13px; font-weight: 500; cursor: pointer;
  opacity: 0.7; transition: opacity var(--m-t-fast);
}
.m-timeline-add:hover { opacity: 1; }
.m-timeline-add::before {
  content: "+"; display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-left: -4px;
  background: var(--m-accent-fill); border-radius: 50%; font-weight: 700;
}

/* ── canvas node (Funnel Builder) ──────────────────────────── */
.m-node {
  position: absolute;
  background: var(--m-bg-elev);
  border: 2px solid var(--m-line);
  border-radius: var(--m-r);
  padding: 10px 14px;
  min-width: 140px;
  box-shadow: var(--m-shadow-1);
  cursor: grab;
  user-select: none;
  transition: all var(--m-t-fast) var(--m-easing);
  font-size: 13px;
}
.m-node:hover { box-shadow: var(--m-shadow-2); border-color: var(--m-line-strong); }
.m-node.selected { border-color: var(--m-accent); box-shadow: 0 0 0 3px var(--m-accent-fill), var(--m-shadow-2); }
.m-node.dragging { opacity: 0.6; cursor: grabbing; }
.m-node-icon { display: inline-block; width: 18px; height: 18px; vertical-align: middle; margin-right: 6px; }
.m-node-title { font-weight: 600; }
.m-node-sub { color: var(--m-text-3); font-size: 11px; margin-top: 2px; }
.m-node-handle {
  position: absolute; width: 10px; height: 10px;
  background: var(--m-accent); border: 2px solid var(--m-bg-elev);
  border-radius: 50%; cursor: crosshair;
}
.m-node-handle.top    { top: -6px; left: 50%; transform: translateX(-50%); }
.m-node-handle.bottom { bottom: -6px; left: 50%; transform: translateX(-50%); }

/* node kinds (color coding minimal · left border stripe) */
.m-node[data-kind="trigger"]  { border-left: 4px solid #ff9500; }
.m-node[data-kind="mail"]     { border-left: 4px solid #007aff; }
.m-node[data-kind="line"]     { border-left: 4px solid #34c759; }
.m-node[data-kind="tag"]      { border-left: 4px solid #af52de; }
.m-node[data-kind="wait"]     { border-left: 4px solid #8e8e93; }
.m-node[data-kind="branch"]   { border-left: 4px solid #ff2d55; }

.m-canvas {
  position: relative;
  width: 100%; height: 100%; min-height: 600px;
  background:
    radial-gradient(circle at center, var(--m-line-strong) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--m-fill);
  overflow: auto;
  border-radius: var(--m-r);
}
.m-canvas-svg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.m-canvas-svg path {
  stroke: var(--m-line-strong); stroke-width: 2; fill: none;
}

/* palette (drag source list on left) */
.m-palette-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; margin-bottom: 4px;
  background: var(--m-bg-elev);
  border: 1px solid var(--m-line);
  border-radius: var(--m-r-sm);
  cursor: grab; font-size: 13px; font-weight: 500;
  transition: all var(--m-t-fast);
}
.m-palette-item:hover { border-color: var(--m-accent); box-shadow: var(--m-shadow-1); }
.m-palette-item:active { cursor: grabbing; }
.m-palette-icon { font-size: 18px; }

/* ── inspector (right pane) ────────────────────────────────── */
.m-inspector-title {
  font-size: 15px; font-weight: 600;
  padding-bottom: var(--m-sp-3);
  border-bottom: 1px solid var(--m-line);
  margin-bottom: var(--m-sp-4);
}
.m-inspector-empty {
  padding: var(--m-sp-6) var(--m-sp-4);
  text-align: center; color: var(--m-text-3);
  font-size: 13px;
}

/* ── LINE preview (mobile shape) ───────────────────────────── */
.m-line-preview {
  width: 280px; margin: 0 auto;
  background: #ecf1f7;
  border-radius: 28px;
  padding: 40px 12px 24px;
  border: 8px solid #202024;
  box-shadow: var(--m-shadow-3);
}
.m-line-bubble {
  background: #fff;
  border-radius: 14px 14px 14px 2px;
  padding: 10px 14px; font-size: 14px;
  color: #333; line-height: 1.5;
  margin-bottom: 10px; max-width: 220px;
  box-shadow: var(--m-shadow-1);
  word-wrap: break-word;
}

/* ── mail preview (envelope shape) ─────────────────────────── */
.m-mail-preview {
  max-width: 480px; margin: 0 auto;
  background: var(--m-bg-elev);
  border: 1px solid var(--m-line);
  border-radius: var(--m-r);
  overflow: hidden;
  box-shadow: var(--m-shadow-2);
}
.m-mail-header {
  padding: var(--m-sp-4);
  border-bottom: 1px solid var(--m-line);
  background: var(--m-fill);
}
.m-mail-from { font-size: 13px; color: var(--m-text-2); }
.m-mail-subject { font-size: 17px; font-weight: 600; margin-top: 4px; }
.m-mail-body { padding: var(--m-sp-5); font-size: 14px; line-height: 1.7; }

/* ── provider chooser (payment) ────────────────────────────── */
.m-provider-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--m-sp-4); margin: var(--m-sp-5) 0;
}
.m-provider-card {
  position: relative;
  background: var(--m-bg-elev);
  border: 1.5px solid var(--m-line);
  border-radius: var(--m-r-lg);
  padding: var(--m-sp-5);
  text-align: center;
  cursor: pointer;
  transition: all var(--m-t) var(--m-easing);
}
.m-provider-card:hover { border-color: var(--m-accent); transform: translateY(-2px); box-shadow: var(--m-shadow-2); }
.m-provider-card.connected { border-color: var(--m-success); background: rgba(52,199,89,0.03); }
.m-provider-card.connected::after {
  content: "✓ 接続済";
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 600; color: var(--m-success);
  background: rgba(52,199,89,0.14); padding: 3px 10px; border-radius: var(--m-r-pill);
}
.m-provider-logo { height: 40px; margin-bottom: var(--m-sp-3); display: block; margin-inline: auto; }
.m-provider-name { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.m-provider-desc { font-size: 13px; color: var(--m-text-2); min-height: 36px; }

/* ── table (spare) ─────────────────────────────────────────── */
.m-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.m-table th, .m-table td { padding: 10px 14px; text-align: left; }
.m-table th { font-size: 12px; font-weight: 600; color: var(--m-text-2); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--m-line); }
.m-table tr:not(:last-child) td { border-bottom: 1px solid var(--m-line); }
.m-table tbody tr { transition: background var(--m-t-fast); }
.m-table tbody tr:hover { background: var(--m-fill); }

/* ── toolbar (top of main) ─────────────────────────────────── */
.m-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--m-sp-3) 0 var(--m-sp-5);
  border-bottom: 1px solid var(--m-line);
  margin-bottom: var(--m-sp-5);
}
.m-toolbar-title { font-size: 22px; font-weight: 700; letter-spacing: -0.014em; }
.m-toolbar-actions { display: flex; gap: var(--m-sp-2); align-items: center; }

/* ── empty state ───────────────────────────────────────────── */
.m-empty {
  padding: var(--m-sp-8) var(--m-sp-4);
  text-align: center;
}
.m-empty-icon { font-size: 48px; margin-bottom: var(--m-sp-3); opacity: 0.4; }
.m-empty-title { font-size: 17px; font-weight: 600; margin-bottom: var(--m-sp-2); }
.m-empty-desc { color: var(--m-text-2); font-size: 14px; margin-bottom: var(--m-sp-4); }

/* ── divider ───────────────────────────────────────────────── */
.m-hr { border: 0; border-top: 1px solid var(--m-line); margin: var(--m-sp-5) 0; }

/* ── utility ───────────────────────────────────────────────── */
.m-flex { display: flex; }
.m-flex-col { display: flex; flex-direction: column; }
.m-items-center { align-items: center; }
.m-justify-between { justify-content: space-between; }
.m-gap-1 { gap: var(--m-sp-1); } .m-gap-2 { gap: var(--m-sp-2); } .m-gap-3 { gap: var(--m-sp-3); }
.m-gap-4 { gap: var(--m-sp-4); } .m-gap-5 { gap: var(--m-sp-5); }
.m-mt-2 { margin-top: var(--m-sp-2); } .m-mt-3 { margin-top: var(--m-sp-3); } .m-mt-4 { margin-top: var(--m-sp-4); }
.m-mt-5 { margin-top: var(--m-sp-5); }
.m-mb-2 { margin-bottom: var(--m-sp-2); } .m-mb-3 { margin-bottom: var(--m-sp-3); } .m-mb-4 { margin-bottom: var(--m-sp-4); }
.m-text-center { text-align: center; }
.m-muted { color: var(--m-text-2); }

/* ── CMD+K palette (system-wide launcher) ──────────────────── */
.m-cmdk-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.32);
  backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  z-index: 200; padding-top: 100px;
}
.m-cmdk-overlay.open { display: flex; }
.m-cmdk {
  width: 560px; max-width: 90vw;
  background: var(--m-bg-elev);
  border-radius: var(--m-r-lg);
  box-shadow: var(--m-shadow-3);
  overflow: hidden;
}
.m-cmdk input {
  width: 100%; height: 52px; padding: 0 20px;
  border: 0; font-size: 17px; font-family: inherit;
  color: var(--m-text); background: transparent;
  border-bottom: 1px solid var(--m-line);
}
.m-cmdk input:focus { outline: none; }
.m-cmdk-list { max-height: 400px; overflow-y: auto; padding: 6px; }
.m-cmdk-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--m-r-sm); cursor: pointer;
  font-size: 14px;
}
.m-cmdk-item:hover, .m-cmdk-item.active { background: var(--m-accent-fill); color: var(--m-accent); }
