/* ============================================================
   旅游AI计调竞价平台 · Premium 设计系统 v12
   - 深 / 浅 / 跟随系统 三主题（CSS 变量驱动，瞬时平滑切换）
   - 玻璃拟态 + 柔和阴影 + 微交互
   - 纯原生 CSS（移除 tailwind 运行时，零构建步骤）
   ============================================================ */

/* ---------- 设计令牌：浅色（默认） ---------- */
:root {
  --bg: #eef2f9;
  --bg-grad-1: #dbe6ff;
  --bg-grad-2: #e9e4ff;
  --bg-grad-3: #d6f3ff;
  --surface: #ffffff;
  --surface-2: #f6f8fc;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);

  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;

  --brand: #3b6cf6;
  --brand-2: #6d5efc;
  --brand-grad: linear-gradient(135deg, #6d5efc 0%, #3b6cf6 100%);
  --brand-soft: rgba(59, 108, 246, 0.1);

  --ok: #10b981;
  --ok-soft: rgba(16, 185, 129, 0.12);
  --warn: #f59e0b;
  --warn-soft: rgba(245, 158, 11, 0.14);
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, 0.12);
  --info: #0ea5e9;
  --info-soft: rgba(14, 165, 233, 0.12);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.28);
  --ring: 0 0 0 3px rgba(59, 108, 246, 0.28);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --font: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 设计令牌：深色 ---------- */
[data-theme="dark"] {
  --bg: #070b18;
  --bg-grad-1: #15183a;
  --bg-grad-2: #1a1340;
  --bg-grad-3: #07223a;
  --surface: #11162a;
  --surface-2: #161c33;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #e8edf7;
  --text-2: #a4b0c8;
  --text-3: #6b7793;

  --brand: #6d8dff;
  --brand-2: #9d8bff;
  --brand-grad: linear-gradient(135deg, #9d8bff 0%, #6d8dff 100%);
  --brand-soft: rgba(109, 141, 255, 0.16);

  --ok: #34d399;
  --ok-soft: rgba(52, 211, 153, 0.16);
  --warn: #fbbf24;
  --warn-soft: rgba(251, 191, 36, 0.16);
  --danger: #f87171;
  --danger-soft: rgba(248, 113, 113, 0.16);
  --info: #38bdf8;
  --info-soft: rgba(56, 189, 248, 0.16);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 34px 70px -22px rgba(0, 0, 0, 0.7);
  --ring: 0 0 0 3px rgba(109, 141, 255, 0.4);
}

/* ---------- 基础 ---------- */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .35s ease, color .35s ease;
}
#app { min-height: 100%; }

a { color: var(--brand); text-decoration: none; }
button { font-family: inherit; }

/* 背景光斑装饰 */
.bg-orbs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-orbs::before, .bg-orbs::after {
  content: ""; position: absolute; width: 46vw; height: 46vw; border-radius: 50%;
  filter: blur(90px); opacity: .55; transition: background .35s ease;
}
.bg-orbs::before { background: var(--bg-grad-1); top: -14vw; left: -10vw; }
.bg-orbs::after { background: var(--bg-grad-3); bottom: -16vw; right: -12vw; }
.bg-orbs .orb-2 {
  position: absolute; width: 34vw; height: 34vw; border-radius: 50%;
  background: var(--bg-grad-2); filter: blur(90px); opacity: .45; top: 30vh; right: 18vw;
}

/* ---------- 玻璃卡片 ---------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s;
}
.card.hoverable:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-strong); }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-pill); border: 1px solid var(--border);
  background: var(--surface); color: var(--text); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .2s, background .2s, border-color .2s, opacity .2s;
  user-select: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--brand-grad); color: #fff; border-color: transparent; box-shadow: 0 10px 24px -10px rgba(59,108,246,.7); }
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(59,108,246,.8); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--brand-soft); }
.btn-danger { background: var(--danger-soft); color: var(--danger); border-color: transparent; }
.btn-sm { padding: 7px 13px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- 表单 ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--text);
  font-size: 14px; font-family: inherit; transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--brand); box-shadow: var(--ring); background: var(--surface); }
.textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: var(--text-3); }

/* ---------- 标签 / 徽章 ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  border-radius: var(--r-pill); font-size: 12px; font-weight: 600; line-height: 1;
  background: var(--surface-2); color: var(--text-2); border: 1px solid var(--border);
}
.tag-brand { background: var(--brand-soft); color: var(--brand); border-color: transparent; }
.tag-ok { background: var(--ok-soft); color: var(--ok); border-color: transparent; }
.tag-warn { background: var(--warn-soft); color: var(--warn); border-color: transparent; }
.tag-danger { background: var(--danger-soft); color: var(--danger); border-color: transparent; }
.tag-info { background: var(--info-soft); color: var(--info); border-color: transparent; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------- 布局：门户 ---------- */
.portal { position: relative; z-index: 1; display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.sidebar {
  background: var(--glass); backdrop-filter: blur(26px) saturate(180%);
  border-right: 1px solid var(--border); padding: 22px 16px; display: flex; flex-direction: column; gap: 6px;
  position: sticky; top: 0; height: 100vh;
}
.brand { display: flex; align-items: center; gap: 11px; padding: 6px 10px 18px; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px; background: var(--brand-grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: 0 8px 20px -8px rgba(59,108,246,.8);
}
.brand .name { font-weight: 800; font-size: 15px; letter-spacing: .2px; }
.brand .sub { font-size: 11px; color: var(--text-3); }
.nav-item {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: var(--r-sm);
  color: var(--text-2); font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
}
.nav-item:hover { background: var(--brand-soft); color: var(--text); }
.nav-item.active { background: var(--brand-soft); color: var(--brand); border-color: var(--border); }
.nav-item .ic { width: 18px; text-align: center; opacity: .85; }
.nav-spacer { flex: 1; }

.main { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  display: flex; align-items: center; gap: 14px; padding: 16px 28px;
  border-bottom: 1px solid var(--border); background: var(--glass); backdrop-filter: blur(26px);
  position: sticky; top: 0; z-index: 5;
}
.topbar h1 { font-size: 18px; margin: 0; font-weight: 800; }
.topbar .spacer { flex: 1; }
.content { padding: 28px; max-width: 1180px; width: 100%; }
.content-wide { padding: 28px; width: 100%; }

/* 用户胶囊 */
.user-pill { display: flex; align-items: center; gap: 10px; padding: 6px 8px 6px 6px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: var(--surface); cursor: pointer; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-grad); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.user-pill .meta { line-height: 1.2; }
.user-pill .meta b { font-size: 13px; }
.user-pill .meta span { font-size: 11px; color: var(--text-3); }

/* ---------- 主题切换 ---------- */
.theme-toggle { display: inline-flex; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 3px; gap: 2px; }
.theme-toggle button { border: none; background: transparent; color: var(--text-3); width: 30px; height: 28px;
  border-radius: var(--r-pill); cursor: pointer; font-size: 14px; transition: background .2s, color .2s; }
.theme-toggle button.active { background: var(--surface); color: var(--brand); box-shadow: var(--shadow-sm); }

/* ---------- 登录页 ---------- */
.login-wrap { position: relative; z-index: 1; min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-card { width: 100%; max-width: 420px; padding: 34px 32px; }
.login-card .logo-big { width: 56px; height: 56px; border-radius: 16px; background: var(--brand-grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 26px;
  box-shadow: 0 14px 30px -10px rgba(59,108,246,.8); margin-bottom: 16px; }
.login-card h2 { margin: 0 0 4px; font-size: 23px; font-weight: 800; }
.login-card .lead { color: var(--text-2); font-size: 14px; margin: 0 0 22px; }
.portal-switch { display: flex; gap: 8px; margin-bottom: 20px; }
.portal-switch .opt { flex: 1; text-align: center; padding: 13px; border-radius: var(--r-sm);
  border: 1px solid var(--border-strong); background: var(--surface-2); cursor: pointer; font-weight: 700; font-size: 14px;
  color: var(--text-2); transition: all .2s; }
.portal-switch .opt.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); box-shadow: var(--ring); }
.portal-switch .opt small { display: block; font-weight: 500; font-size: 11px; color: var(--text-3); margin-top: 2px; }
.login-error { background: var(--danger-soft); color: var(--danger); padding: 11px 14px; border-radius: var(--r-sm);
  font-size: 13px; margin-bottom: 16px; font-weight: 600; }
.login-foot { text-align: center; margin-top: 18px; font-size: 12px; color: var(--text-3); }
.login-foot a { color: var(--brand); }

/* ---------- 表格 / 列表 ---------- */
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; font-size: 12px; color: var(--text-3); font-weight: 700; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.table td { padding: 13px 14px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background .15s; }
.table tbody tr:hover { background: var(--surface-2); }

/* 行卡片（移动端优先的列表项） */
.row-card { display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--surface); transition: border-color .2s, box-shadow .2s, transform .2s; }
.row-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.row-card .rc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.row-card .rc-title { font-weight: 700; font-size: 15px; }
.row-card .rc-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--text-2); font-size: 13px; }
.row-card .rc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* ---------- 网格 ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
@media (max-width: 880px) {
  .portal { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; flex-direction: row; overflow-x: auto; }
  .nav-spacer { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .content, .content-wide { padding: 18px; }
}

/* ---------- 报价卡（竞价看板核心） ---------- */
.quote-card { position: relative; padding: 20px; border-radius: var(--r); border: 1px solid var(--border);
  background: var(--surface); overflow: hidden; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s; }
.quote-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--brand-grad); opacity: .0; transition: opacity .25s; }
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote-card.selected { border-color: var(--ok); box-shadow: 0 0 0 2px var(--ok-soft); }
.quote-card.selected::before { opacity: 1; background: var(--ok); }
.quote-card .qc-anon { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.quote-card .qc-avatar { width: 40px; height: 40px; border-radius: 12px; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-weight: 800; font-size: 16px; }
.quote-card .qc-price { font-size: 26px; font-weight: 800; letter-spacing: -.5px; }
.quote-card .qc-price small { font-size: 13px; color: var(--text-3); font-weight: 600; }
.credit-bar { height: 6px; border-radius: 99px; background: var(--surface-2); overflow: hidden; margin-top: 4px; }
.credit-bar > i { display: block; height: 100%; background: var(--brand-grad); border-radius: 99px; }

/* ---------- 统计卡 ---------- */
.stat { padding: 18px 20px; border-radius: var(--r); border: 1px solid var(--border); background: var(--surface); }
.stat .s-label { font-size: 12px; color: var(--text-3); font-weight: 600; }
.stat .s-value { font-size: 28px; font-weight: 800; margin-top: 6px; letter-spacing: -.5px; }
.stat .s-value small { font-size: 13px; color: var(--text-3); font-weight: 600; }

/* ---------- 空态 ---------- */
.empty { text-align: center; padding: 56px 20px; color: var(--text-3); }
.empty .em-ic { font-size: 40px; opacity: .5; margin-bottom: 10px; }
.empty .em-title { font-weight: 700; color: var(--text-2); font-size: 15px; margin-bottom: 4px; }
.empty .em-sub { font-size: 13px; }

/* ---------- 加载 ---------- */
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-strong);
  border-top-color: var(--brand); animation: spin .7s linear infinite; display: inline-block; }
.spinner.lg { width: 34px; height: 34px; border-width: 3px; }
.center-load { display: grid; place-items: center; min-height: 60vh; gap: 14px; color: var(--text-3); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Modal / Toast ---------- */
.modal-mask { position: fixed; inset: 0; background: rgba(8,12,24,.5); backdrop-filter: blur(4px);
  display: grid; place-items: center; z-index: 50; padding: 20px; animation: fade .2s; }
.modal { width: 100%; max-width: 520px; padding: 26px; background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); animation: pop .25s cubic-bezier(.16,1,.3,1); }
.modal h3 { margin: 0 0 6px; font-size: 18px; }
.modal .m-desc { color: var(--text-2); font-size: 14px; margin: 0 0 18px; }
.modal .m-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.98); } }

.toast-wrap { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 80; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { padding: 12px 18px; border-radius: var(--r-pill); background: var(--glass-strong); backdrop-filter: blur(20px);
  border: 1px solid var(--border); box-shadow: var(--shadow); font-size: 14px; font-weight: 600; animation: pop .25s; display: flex; align-items: center; gap: 9px; }
.toast.ok { color: var(--ok); } .toast.err { color: var(--danger); } .toast.info { color: var(--info); }

/* ---------- 杂项 ---------- */
.section-title { font-size: 16px; font-weight: 800; margin: 0 0 14px; display: flex; align-items: center; gap: 9px; }
.muted { color: var(--text-3); }
.row { display: flex; align-items: center; gap: 10px; }
.wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.flex-1 { flex: 1 1 0; }
.mt { margin-top: 16px; } .mt-lg { margin-top: 26px; } .mb { margin-bottom: 16px; }
.divider { height: 1px; background: var(--border); margin: 18px 0; }
.fade-enter { animation: fade .3s; }
.skill-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--brand-soft); color: var(--brand); font-size: 13px; font-weight: 600; border: 1px solid transparent; }
.kbd { font-family: ui-monospace, monospace; font-size: 12px; padding: 2px 6px; border-radius: 6px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); }

/* ---------- 对话式采购需求助手（AI 接管收需求） ---------- */
.ai-draft-card { border: 1px solid var(--border); box-shadow: var(--shadow); }
.ai-chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--glass); }
.ai-avatar { width: 38px; height: 38px; border-radius: 12px; background: var(--brand-grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; flex: none; }
.ai-chat-body { padding: 20px; min-height: 200px; max-height: 440px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.ai-welcome { color: var(--text-3); font-size: 14px; text-align: center; margin: auto; padding: 24px; line-height: 1.8; }
.ai-welcome b { color: var(--brand); font-weight: 700; }
.bubble-row { display: flex; }
.bubble-row.user { justify-content: flex-end; }
.bubble { max-width: 80%; padding: 11px 15px; border-radius: 16px; font-size: 14px; line-height: 1.6; animation: pop .2s; word-break: break-word; }
.bubble.ai { background: var(--surface-2); border: 1px solid var(--border); border-bottom-left-radius: 4px; color: var(--text); align-self: flex-start; }
.bubble.user { background: var(--brand-grad); color: #fff; border-bottom-right-radius: 4px; }
.bubble.typing { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); }
.ai-draft-preview { margin: 0 16px 16px; padding: 16px; border-radius: var(--r-md); background: var(--brand-soft); border: 1px solid var(--border); }
.ai-draft-preview .kv { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.ai-draft-preview .kv:last-of-type { border-bottom: 0; }
.ai-draft-preview .kv span { color: var(--text-3); }
.itinerary-preview { margin-top: 14px; padding: 14px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border); }
.it-head { display: flex; align-items: center; justify-content: space-between; font-size: 15px; margin-bottom: 8px; }
.it-summary { color: var(--text-2); font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.it-budget { font-size: 14px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.it-days { display: flex; flex-direction: column; gap: 6px; }
.it-day { font-size: 13px; color: var(--text); background: var(--surface-2); padding: 8px 10px; border-radius: 8px; }
.it-day b { color: var(--brand); margin-right: 8px; }
.ai-chat-input { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--border); background: var(--glass); }
.ai-chat-input .input { flex: 1; }

/* 行程简表（outline） */
.outline-preview { background: var(--brand-soft); border: 1px dashed var(--brand); }
.outline-days { gap: 10px; }
.outline-day { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.od-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.od-top b { color: var(--brand); font-size: 14px; }
.od-route { font-size: 13px; color: var(--text-2); background: var(--surface-2); padding: 3px 10px; border-radius: 20px; }
.od-arrow { margin: 0 6px; color: var(--brand); }
.od-theme { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.od-highlight { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 6px; }
.od-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text-3); }
.od-meta span { background: var(--surface-2); padding: 2px 8px; border-radius: 4px; }

/* 详细行程文档（doc） */
.doc-preview { background: var(--surface); border: 1px solid var(--border); }
.doc-header { text-align: center; padding: 16px 10px 12px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.doc-header h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }
.doc-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; font-size: 13px; color: var(--text-2); }
.doc-meta span { background: var(--surface-2); padding: 3px 10px; border-radius: 20px; }
.doc-summary { color: var(--text-2); font-size: 14px; line-height: 1.7; padding: 0 4px 14px; border-bottom: 1px dashed var(--border); margin-bottom: 14px; }
.doc-days { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.doc-day { background: var(--surface-2); border-radius: 12px; padding: 14px; }
.doc-day-title { font-size: 15px; font-weight: 700; color: var(--brand); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.doc-item { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.doc-item:last-child { border-bottom: 0; }
.doc-time { min-width: 48px; font-size: 13px; font-weight: 600; color: var(--text-3); }
.doc-body { flex: 1; }
.doc-activity { font-size: 14px; color: var(--text); line-height: 1.5; }
.doc-location { font-size: 12px; color: var(--text-2); margin-top: 3px; }
.doc-note { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text-3); margin-top: 4px; }
.doc-section { margin-top: 14px; padding: 14px; background: var(--surface-2); border-radius: 10px; }
.doc-section-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.doc-text { font-size: 13px; color: var(--text-2); line-height: 1.7; white-space: pre-wrap; font-family: inherit; margin: 0; }
