/* ============================================================
 * apps/notes.css —— 记事本（js/apps/notes.js）
 *
 * 由原 css/apps.css 按既有的分节标记切分而来（0.3.1 架构整理）。
 * 内容与切分前逐字节一致 —— 只换了存放位置，没动一个字符。
 * 新增样式请放进对应 App 的分片，不要再往 apps.css 里堆。
 * ============================================================ */
/* ============ 记事本 ============ */
.note-item { padding: 12px 14px; background: var(--surface); position: relative; }
.note-item + .note-item::before { content: ''; position: absolute; left: 14px; right: 0; top: 0; height: 1px; background: var(--divider); }
.note-item .ni-d { font-size: 11px; color: var(--text-3); }
.note-item .ni-t { font-size: 14px; margin-top: 3px; line-height: 1.5; }
.note-item.flag { border-left: 3px solid var(--md-accent); }
