@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-canvas: #F6F7F9;
  --bg-canvas-2: #EEF0F3;
  --bg-surface: #FFFFFF;
  --bg-row-hover: #F8FAFC;
  --bg-subtle: #F1F4F8;

  --fg-1: #0F172A;
  --fg-2: #334155;
  --fg-3: #64748B;
  --fg-4: #94A3B8;
  --fg-5: #CBD5E1;

  --border-hair: #EEF0F3;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  /* HeroUI-style primary: cyan/blue */
  --primary: #006FEE;
  --primary-hov: #0057C7;
  --primary-soft: #E0EFFF;
  --primary-50: #F0F7FF;

  --cyan: #06B7DB;
  --cyan-soft: #DBF6FB;

  --success: #17C964;
  --success-soft: #D8F5E5;
  --warning: #F5A524;
  --warning-soft: #FCEBC9;
  --danger: #F31260;
  --danger-soft: #FDD0DE;
  --secondary: #7828C8;
  --secondary-soft: #EDDFFB;

  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 20px;
  --r-pill: 9999px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
  --shadow-card: 0 1px 3px rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.03);
  --shadow-float: 0 4px 12px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-modal: 0 24px 48px -12px rgba(15,23,42,.18), 0 4px 12px rgba(15,23,42,.06);
  --shadow-ring: 0 0 0 3px rgba(0,111,238,.2);

  --sidebar-w: 240px;
  --header-h: 60px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  color: var(--fg-1);
  background: var(--bg-canvas);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: none; box-shadow: var(--shadow-ring); border-color: var(--primary);
}
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 600; color: var(--fg-1); letter-spacing: -0.01em; }
p { margin: 0; }

/* ---------- App shell ---------- */
.app { display: flex; min-height: 100vh; }
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-hair);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.sidebar-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-hair);
}
.sidebar-brand .logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,111,238,.25);
}
.sidebar-brand-name { font-weight: 700; font-size: 15px; }
.sidebar-brand-sub { font-size: 11px; color: var(--fg-4); letter-spacing: 0.06em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }

.sidebar-nav { padding: 12px 12px; flex: 1; overflow-y: auto; }
.nav-section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-4);
  padding: 16px 10px 6px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  color: var(--fg-2); font-weight: 500; font-size: 13.5px;
  cursor: pointer; width: 100%; text-align: left;
  transition: background .15s ease;
}
.nav-item:hover { background: var(--bg-row-hover); color: var(--fg-1); }
.nav-item.active { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.nav-item.active svg { color: var(--primary); }
.nav-item svg { width: 17px; height: 17px; color: var(--fg-3); flex-shrink: 0; }
.nav-item .count {
  margin-left: auto; font-size: 11px;
  background: var(--bg-canvas-2); color: var(--fg-3);
  padding: 1px 7px; border-radius: 6px; font-weight: 600;
}
.nav-item.active .count { background: white; color: var(--primary); }

.sidebar-user {
  border-top: 1px solid var(--border-hair);
  padding: 12px; display: flex; gap: 10px; align-items: center;
}
.sidebar-user .meta { flex: 1; min-width: 0; }
.sidebar-user .name { font-weight: 600; font-size: 13px; }
.sidebar-user .role { font-size: 11px; color: var(--fg-3); }

/* ---------- Header ---------- */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.header {
  height: var(--header-h); flex-shrink: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 0 28px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-hair);
  position: sticky; top: 0; z-index: 20;
}
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-canvas);
  border: 1px solid var(--border-hair);
  border-radius: 10px;
  padding: 7px 12px;
  width: 360px;
  transition: all .15s ease;
}
.search-box:focus-within { background: white; border-color: var(--primary); box-shadow: var(--shadow-ring); }
.search-box svg { width: 15px; height: 15px; color: var(--fg-4); }
.search-box input { flex: 1; border: 0; background: transparent; outline: none; font-size: 13.5px; }
.search-box kbd {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: var(--fg-3); background: white; border: 1px solid var(--border-hair);
  padding: 1px 6px; border-radius: 5px;
}
.header-spacer { flex: 1; }
.icon-btn {
  position: relative;
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2); transition: background .15s;
}
.icon-btn:hover { background: var(--bg-canvas); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn .dot {
  position: absolute; top: 8px; right: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--danger); border: 2px solid white;
}

/* ---------- Content area ---------- */
.content {
  padding: 24px 28px 40px;
  flex: 1;
  max-width: 1440px;
  width: 100%;
}
.page-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 22px; gap: 16px;
}
.page-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.page-subtitle { font-size: 13px; color: var(--fg-3); margin-top: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  font-weight: 500; font-size: 13.5px;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 1px 2px rgba(0,111,238,.2); }
.btn-primary:hover { background: var(--primary-hov); }
.btn-secondary { background: white; color: var(--fg-1); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-canvas); }
.btn-ghost { color: var(--fg-2); }
.btn-ghost:hover { background: var(--bg-canvas); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { filter: brightness(0.95); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { filter: brightness(0.95); }
.btn-sm { padding: 5px 10px; font-size: 12.5px; border-radius: 8px; }
.btn-icon { padding: 8px; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hair);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.card-pad { padding: 20px; }
.card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border-hair);
}
.card-title { font-size: 15px; font-weight: 600; }
.card-sub { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip-default { background: var(--bg-canvas-2); color: var(--fg-2); }
.chip-primary { background: var(--primary-soft); color: var(--primary); }
.chip-success { background: var(--success-soft); color: #0E8546; }
.chip-warning { background: var(--warning-soft); color: #A0670C; }
.chip-danger { background: var(--danger-soft); color: #B30746; }
.chip-cyan { background: var(--cyan-soft); color: #047C8E; }
.chip-secondary { background: var(--secondary-soft); color: var(--secondary); }
.chip-neutral { background: var(--bg-canvas-2); color: var(--fg-2); }

/* ---------- Tables ---------- */
.tbl-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-hair);
  border-radius: var(--r-xl);
  /* overflow:hidden 会把行内下拉菜单（如人才库「⋯」操作菜单）整个裁掉——
     行数少时菜单完全不可见。圆角改由首尾单元格承担。 */
  overflow: visible;
}
.tbl thead th:first-child { border-top-left-radius: var(--r-xl); }
.tbl thead th:last-child { border-top-right-radius: var(--r-xl); }
.tbl tbody tr:last-child td:first-child { border-bottom-left-radius: var(--r-xl); }
.tbl tbody tr:last-child td:last-child { border-bottom-right-radius: var(--r-xl); }
.tbl { width: 100%; border-collapse: collapse; }
.tbl thead { background: var(--bg-canvas); }
.tbl th {
  text-align: left; padding: 11px 16px;
  font-size: 11px; font-weight: 600;
  color: var(--fg-3); letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-hair);
}
.tbl td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-hair);
  font-size: 13.5px; color: var(--fg-2);
  vertical-align: middle;
}
.tbl tbody tr { cursor: pointer; transition: background .12s; }
.tbl tbody tr:hover { background: var(--bg-row-hover); }
.tbl tbody tr:last-child td { border-bottom: 0; }

/* ---------- Avatar ---------- */
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 13px;
  flex-shrink: 0;
}
.avatar-sm { width: 28px; height: 28px; font-size: 11px; }
.avatar-lg { width: 64px; height: 64px; font-size: 22px; }

/* ---------- Inputs ---------- */
.input, .textarea, .select {
  width: 100%; padding: 9px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13.5px;
  transition: all .15s;
}
.input:hover, .textarea:hover, .select:hover { border-color: var(--border-strong); }
.input::placeholder, .textarea::placeholder { color: var(--fg-4); }
.input-group { position: relative; }
.input-group svg.lead { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--fg-4); }
.input-group .input { padding-left: 32px; }
.label { font-size: 12px; font-weight: 500; color: var(--fg-2); display: block; margin-bottom: 6px; }

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter-bar .input-group { flex: 1; min-width: 240px; max-width: 360px; }
.filter-bar .select { width: auto; min-width: 130px; padding-right: 28px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}

/* ---------- Drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.32);
  z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: 560px; max-width: 96vw;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-hair);
  box-shadow: var(--shadow-modal);
  transform: translateX(100%);
  transition: transform .26s cubic-bezier(.22,1,.36,1);
  z-index: 101;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-wide { width: 820px; }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border-hair);
}
.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-foot { padding: 14px 20px; border-top: 1px solid var(--border-hair); display: flex; gap: 8px; justify-content: flex-end; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.40);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .18s;
  padding: 24px;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: white; border-radius: 16px;
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-modal);
  transform: scale(.96) translateY(8px);
  transition: transform .2s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
  max-height: 90vh;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-head { padding: 18px 20px 8px; }
.modal-title { font-size: 16px; font-weight: 600; }
.modal-sub { font-size: 12.5px; color: var(--fg-3); margin-top: 4px; }
.modal-body { padding: 12px 20px; overflow-y: auto; }
.modal-foot { padding: 14px 20px 18px; display: flex; gap: 8px; justify-content: flex-end; border-top: 1px solid var(--border-hair); margin-top: 8px; }

/* ---------- Toast ---------- */
.toast-stack { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border-hair);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: var(--shadow-float);
  min-width: 280px;
  animation: toastIn .26s cubic-bezier(.22,1,.36,1);
  font-size: 13.5px;
}
.toast .icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast.success .icon { background: var(--success-soft); color: var(--success); }
.toast.error .icon { background: var(--danger-soft); color: var(--danger); }
.toast.info .icon { background: var(--primary-soft); color: var(--primary); }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border-hair); margin-bottom: 20px; }
.tab {
  padding: 10px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--fg-3); border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab:hover { color: var(--fg-1); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

/* ---------- Progress ---------- */
.progress { width: 100%; height: 6px; background: var(--bg-canvas-2); border-radius: 4px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--cyan)); border-radius: 4px; transition: width .3s; }
.progress.success .progress-bar { background: var(--success); }
.progress.warning .progress-bar { background: var(--warning); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 24px; }
.timeline:before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border-hair); }
.tl-item { position: relative; padding-bottom: 16px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -24px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: white; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; }
.tl-dot.active { border-color: var(--primary); }
.tl-dot.active:after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.tl-dot.done { border-color: var(--success); background: var(--success); }
.tl-dot.done:after { content: ''; width: 6px; height: 6px; background: white; border-radius: 50%; }
.tl-title { font-size: 13.5px; font-weight: 600; color: var(--fg-1); }
.tl-meta { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.tl-desc { font-size: 12.5px; color: var(--fg-2); margin-top: 4px; }

/* ---------- Funnel ---------- */
.funnel { display: flex; flex-direction: column; gap: 10px; }
.funnel-row { display: flex; align-items: center; gap: 12px; }
.funnel-label { width: 88px; font-size: 12.5px; color: var(--fg-2); font-weight: 500; }
.funnel-bar-wrap { flex: 1; height: 28px; background: var(--bg-canvas); border-radius: 6px; overflow: hidden; position: relative; }
.funnel-bar {
  height: 100%; border-radius: 6px;
  display: flex; align-items: center; padding: 0 12px;
  color: white; font-size: 12px; font-weight: 600;
  transition: width .4s cubic-bezier(.22,1,.36,1);
}
.funnel-count { width: 48px; text-align: right; font-size: 13px; font-weight: 600; color: var(--fg-1); }

/* ---------- Stats ---------- */
.stat-card {
  background: white; border: 1px solid var(--border-hair);
  border-radius: var(--r-xl); padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-card);
}
.stat-row { display: flex; align-items: center; justify-content: space-between; }
.stat-label { font-size: 12.5px; color: var(--fg-3); font-weight: 500; }
.stat-icon { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.stat-value { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.stat-trend { font-size: 12px; color: var(--success); font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.stat-trend.down { color: var(--danger); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border-hair); margin: 16px 0; }
.kv { display: flex; gap: 8px; padding: 6px 0; font-size: 13px; }
.kv-key { color: var(--fg-3); width: 88px; flex-shrink: 0; }
.kv-val { color: var(--fg-1); flex: 1; }

.skill-tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 6px;
  background: var(--bg-canvas); color: var(--fg-2);
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--border-hair);
}
.skill-tag.match { background: var(--success-soft); color: #0E8546; border-color: transparent; }

.pagination { display: flex; align-items: center; gap: 6px; justify-content: flex-end; padding: 14px 16px; border-top: 1px solid var(--border-hair); background: white; }
.pagination .page-btn { width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; color: var(--fg-2); }
.pagination .page-btn:hover { background: var(--bg-canvas); }
.pagination .page-btn.active { background: var(--primary); color: white; }
.pagination .page-info { font-size: 12px; color: var(--fg-3); margin-right: auto; }

.score-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: conic-gradient(var(--primary) calc(var(--p) * 1%), var(--bg-canvas-2) 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.score-circle:before {
  content: ''; position: absolute; inset: 4px; background: white; border-radius: 50%;
}
.score-circle span { position: relative; font-size: 14px; font-weight: 700; color: var(--primary); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: white; border: 1px solid var(--border-hair);
  border-radius: 10px; box-shadow: var(--shadow-float);
  min-width: 180px; padding: 4px; z-index: 50;
}
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 6px;
  font-size: 13px; color: var(--fg-2); width: 100%; text-align: left;
}
.dropdown-item:hover { background: var(--bg-canvas); }
.dropdown-item.danger { color: var(--danger); }
.dropdown-item svg { width: 14px; height: 14px; }

/* ---------- Mobile booking page ---------- */
.booking-page {
  min-height: 100vh; background: linear-gradient(180deg, #EAF4FF 0%, #F6F7F9 280px);
  padding: 32px 20px 60px;
}
.booking-container { max-width: 520px; margin: 0 auto; }
.booking-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.booking-brand .logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,111,238,.25);
}
.booking-card {
  background: white; border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15,23,42,.08), 0 1px 3px rgba(15,23,42,.04);
  border: 1px solid var(--border-hair);
  overflow: hidden;
}
.booking-card-head { padding: 22px 22px 18px; border-bottom: 1px solid var(--border-hair); }
.booking-card-body { padding: 22px; }
.date-pill {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 8px 4px; border-radius: 10px;
  background: var(--bg-surface); border: 1px solid var(--border);
  font-weight: 600; min-width: 56px;
  transition: all .15s;
}
.date-pill:hover { border-color: var(--primary); }
.date-pill.active { background: var(--primary); color: white; border-color: var(--primary); }
.date-pill .dow { font-size: 10.5px; font-weight: 500; opacity: .7; }
.date-pill .num { font-size: 17px; font-weight: 700; }
.time-slot {
  padding: 11px 14px; border-radius: 10px;
  background: white; border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 600; color: var(--fg-1);
  text-align: center;
  transition: all .15s;
}
.time-slot:hover { border-color: var(--primary); color: var(--primary); }
.time-slot.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,111,238,.25); }
.time-slot:disabled { background: var(--bg-canvas); color: var(--fg-4); cursor: not-allowed; }

/* Variable token */
.var-token {
  display: inline-flex; align-items: center;
  padding: 2px 8px; margin: 0 2px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 5px; font-size: 12px; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

/* Mobile media */
@media (max-width: 720px) {
  .booking-page { padding: 16px 12px 40px; }
  .booking-card-head, .booking-card-body { padding: 18px; }
}
