/* =========================================================================
   Sefalana Social Media Management — brand stylesheet
   Tokens benchmarked from website.sefalana.co.bw (navy + gold, soft shadows,
   Omnes type). Clean, corporate-but-warm, generous whitespace, clear status
   colours. Built to be read by a non-technical marketer in seconds.
   ========================================================================= */

:root {
  /* Brand */
  --navy: #004475;
  --navy-600: #003259;
  --navy-700: #001f3d;
  --ink: #0a1730;
  --gold: #ffaf00;
  --gold-deep: #c58a1a;

  /* Status hues */
  --green: #1d6a36;
  --green-deep: #0e4f24;
  --red: #c8262b;
  --red-deep: #8a141b;
  --teal: #0f8c7f;
  --orange: #f26100;

  /* Surfaces */
  --bg: #fafafa;
  --bg-alt: #f3f6fa;
  --card: #ffffff;
  --border: #ececec;
  --border-strong: #d8dadd;
  --muted: #5b6472;
  --muted-2: #8a93a3;

  /* Soft state tints */
  --success-bg: #d0fae5;
  --success-fg: #0e4f24;
  --warning-bg: #fef3c6;
  --warning-fg: #7a5a00;
  --danger-bg: #fdecec;
  --danger-fg: #8a141b;
  --info-bg: #eef4fa;
  --info-fg: #004475;

  /* Shape */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Navy-tinted elevation, straight from the benchmark */
  --shadow-sm: 0 1px 2px #0a17300a, 0 8px 24px #0a17300f;
  --shadow-lg: 0 2px 4px #0a17300a, 0 24px 48px -8px #0a17301f;

  --font: "Omnes", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;
}

/* --- Reset-ish base --------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  /* The live site uses antialiased smoothing — without it Omnes renders heavy. */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern";
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Clean, not chunky: semibold headings, bold reserved for the main page title.
   (The site keeps its heaviest weight for large marketing display type only.) */
h1, h2, h3, h4 { margin: 0 0 .4em; font-weight: 600; line-height: 1.15; color: var(--navy-700); letter-spacing: -0.02em; }
h1 { font-size: 1.85rem; font-weight: 700; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.08rem; }
p { margin: 0 0 1rem; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
small { font-size: .82rem; }
::selection { background: var(--gold); color: var(--navy-700); }

/* Gold underline accent on key heading words — sits below the text, no overlap. */
.hl {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.16em;
  text-decoration-skip-ink: none;
}
/* Small uppercase eyebrow label with a gold dot, above section headings. */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* --- Header / nav ----------------------------------------------------- */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
/* Wordmark: "Sefalana" in Omnes bold + a gold dot, matching the live site —
   a brighter navy than the headings, dot set off by a clear space near the baseline. */
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand-word { font-weight: 700; color: var(--navy); font-size: 1.55rem; letter-spacing: -0.015em; }
.brand-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); margin-left: 7px; vertical-align: baseline; }
.brand-sub { align-self: center; font-size: .82rem; font-weight: 600; color: var(--muted); padding-left: 12px; border-left: 1px solid var(--border-strong); }
/* Plain-text nav with a gold underline for the active item (no pills). */
.nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav a { color: var(--navy-700); font-weight: 500; font-size: .95rem; padding: 6px 0; position: relative; transition: color .15s; }
.nav a:hover { color: var(--navy); text-decoration: none; }
.nav a.is-active { color: var(--navy); font-weight: 600; }
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 3px; background: var(--gold); }

/* --- Layout ----------------------------------------------------------- */
main { flex: 1 0 auto; padding: 32px 0 56px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.page-head .lede { color: var(--muted); font-size: 1rem; max-width: 62ch; margin: 6px 0 0; }
.section-title { display: flex; align-items: center; gap: 10px; margin: 34px 0 16px; }
.section-title h2 { margin: 0; }
.section-title .count { color: var(--muted); font-weight: 600; font-size: .95rem; }
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sync { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.sync-meta { font-size: .78rem; color: var(--muted); font-weight: 500; }

/* Full-screen loading overlay for AJAX sync / filtering */
.overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(10, 23, 48, .55); backdrop-filter: blur(3px); }
.overlay.is-open { display: flex; }
.overlay__box { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px 36px; text-align: center; max-width: 90vw; }
.overlay__msg { font-weight: 600; color: var(--navy-700); }
.overlay__sub { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.spinner { width: 44px; height: 44px; border-radius: 50%; border: 4px solid var(--bg-alt); border-top-color: var(--navy); margin: 0 auto 16px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* subtle busy state on the content while an in-place refresh runs */
.is-busy { opacity: .55; transition: opacity .15s; pointer-events: none; }

/* --- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: inherit; font-weight: 600; font-size: .92rem; line-height: 1;
  padding: 11px 18px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .04s ease, box-shadow .15s, background .15s, border-color .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold { background: var(--gold); color: var(--navy-700); }
.btn--gold:hover { background: #f2a600; color: var(--navy-700); box-shadow: var(--shadow-sm); }
.btn--ghost { background: var(--card); color: var(--navy); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--bg-alt); }
.btn--danger { background: var(--card); color: var(--red); border-color: #eccccd; }
.btn--danger:hover { background: var(--danger-bg); }
.btn--success { background: var(--green); color: #fff; }
.btn--success:hover { background: var(--green-deep); color: #fff; }
.btn--sm { padding: 8px 13px; font-size: .85rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* --- Chips (workflow status) ------------------------------------------ */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 600; letter-spacing: .01em;
  padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .9; }
.chip--new { background: var(--info-bg); color: var(--navy); }
.chip--handled { background: var(--success-bg); color: var(--green-deep); }
.chip--escalated { background: var(--warning-bg); color: var(--warning-fg); }
.chip--guidance { background: #d6f3ef; color: #0b6b60; }
.chip--closed { background: #eceef1; color: #56606f; }

/* --- Tag chips (coloured by tag.color via inline --c) ----------------- */
.tag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 600; padding: 3px 10px 3px 8px;
  border-radius: var(--radius-pill);
  color: var(--c, var(--navy));
  background: color-mix(in srgb, var(--c, var(--navy)) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--c, var(--navy)) 22%, #fff);
}
.tag-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c, var(--navy)); }
.tag-chip--plain { background: var(--bg-alt); border-color: var(--border); }

/* --- Sentiment badges ------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: .04em; }
.sent--negative { background: var(--danger-bg); color: var(--red-deep); }
.sent--mixed { background: #ffedd9; color: #9a4a00; }
.sent--positive { background: var(--success-bg); color: var(--green-deep); }
.sent--neutral { background: #eceef1; color: #56606f; }
.sent--unknown { background: #f0eefc; color: #5b4bb0; }

/* Page colour chip */
.page-chip { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink); }
.page-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c, var(--navy)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--c, var(--navy)) 15%, transparent); }
.lang-pill { display: inline-flex; font-size: .72rem; font-weight: 600; color: var(--muted); background: var(--bg-alt); padding: 3px 9px; border-radius: var(--radius-pill); }

/* Nav count badge (pending negative mentions) */
.nav-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 6px; border-radius: var(--radius-pill); background: var(--red); color: #fff; font-size: .68rem; font-weight: 700; }

/* Signed-in identity in the header */
.nav-user { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 500; color: var(--navy-700); padding-left: 8px; }
.nav-role { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: var(--bg-alt); padding: 2px 7px; border-radius: var(--radius-pill); }

/* "Mention" badge + avatar — distinguishes a post that tagged us from a comment on our post */
.pill-mention { display: inline-flex; align-items: center; gap: 4px; font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: #0b6b60; background: #d6f3ef; padding: 2px 8px; border-radius: var(--radius-pill); }
.avatar--mention { background: #d6f3ef; color: #0b6b60; border-color: #bfe9e3; }

/* --- Cards ------------------------------------------------------------ */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.card__body { padding: 20px 22px; }

/* Comment card */
.comment-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 20px 22px; margin-bottom: 16px; transition: box-shadow .18s, border-color .18s; }
.comment-card:hover { box-shadow: var(--shadow-lg); }
.comment-card.is-returned { border-color: var(--gold); box-shadow: 0 0 0 3px #ffaf0022, var(--shadow-sm); }
.comment-card__top { display: flex; align-items: flex-start; gap: 14px; justify-content: space-between; margin-bottom: 12px; }
.comment-card__who { display: flex; align-items: center; gap: 11px; min-width: 0; }
.avatar { width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--bg-alt); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 1rem; border: 1px solid var(--border); }
.comment-card__who .name { font-weight: 600; color: var(--navy-700); }
.comment-card__who .name.is-missing { color: var(--muted-2); font-weight: 600; font-style: italic; }
.comment-card__meta { font-size: .8rem; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.comment-card__text { font-size: 1.08rem; line-height: 1.55; color: var(--ink); margin: 4px 0 14px; font-weight: 400; }
.comment-card__context { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 14px; font-size: .86rem; color: var(--muted); }
.comment-card__context .post-excerpt { color: var(--ink); }
.comment-card__reason { display: flex; gap: 9px; align-items: baseline; font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.comment-card__reason strong { color: var(--ink); font-weight: 600; }
.comment-card__foot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: space-between; }
.meta-dot { color: var(--border-strong); }

/* Guidance / handled note blocks inside a card */
.note-block { border-radius: var(--radius); padding: 13px 15px; font-size: .9rem; margin-bottom: 14px; }
.note-block h4 { margin: 0 0 4px; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 600; }
.note-block--guidance { background: #eaf7f5; border: 1px solid #cfe9e5; }
.note-block--handled { background: var(--success-bg); border: 1px solid #b8ecd0; }
.note-block--question { background: var(--bg-alt); border: 1px solid var(--border); }

/* --- Summary strip ---------------------------------------------------- */
.summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 26px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent, var(--navy)); }
.stat .stat__label { font-size: .82rem; color: var(--muted); font-weight: 600; }
.stat .stat__value { font-size: 2rem; font-weight: 700; color: var(--navy-700); line-height: 1.1; margin-top: 4px; }
.stat .stat__hint { font-size: .78rem; color: var(--muted-2); margin-top: 2px; }
.stat--negative { --accent: var(--red); }
.stat--pending { --accent: var(--gold); }
.stat--awaiting { --accent: var(--teal); }
.stat--total { --accent: var(--navy); }

/* --- Filters bar ------------------------------------------------------ */
.filters { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 16px 18px; margin-bottom: 24px; }
.filters form { display: flex; gap: 14px 16px; flex-wrap: wrap; align-items: flex-end; }
.filters .field { margin: 0; }
.filters .field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.filters .filter-actions { display: flex; gap: 8px; margin-left: auto; }

/* --- Forms ------------------------------------------------------------ */
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: .88rem; color: var(--navy-700); }
.field .hint { font-size: .78rem; color: var(--muted); }
input[type="text"], input[type="email"], input[type="url"], input[type="date"],
input[type="password"], input[type="number"], select, textarea {
  font-family: inherit; font-size: .95rem; color: var(--ink);
  padding: 10px 12px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
select { cursor: pointer; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px #00447522; }
textarea { resize: vertical; min-height: 92px; }
input[type="color"] { padding: 2px; height: 42px; width: 56px; cursor: pointer; }
.checkbox { flex-direction: row; align-items: center; gap: 10px; }
.checkbox input { width: auto; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4px 20px; }

/* --- Messages / banners ----------------------------------------------- */
.messages { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.alert { padding: 13px 16px; border-radius: var(--radius); font-size: .92rem; font-weight: 500; display: flex; gap: 10px; align-items: flex-start; border: 1px solid transparent; }
.alert strong { font-weight: 700; }
.alert--success { background: var(--success-bg); color: var(--success-fg); border-color: #b8ecd0; }
.alert--warning { background: var(--warning-bg); color: var(--warning-fg); border-color: #f4e3a8; }
.alert--danger { background: var(--danger-bg); color: var(--danger-fg); border-color: #eccccd; }
.alert--info { background: var(--info-bg); color: var(--info-fg); border-color: #cfe0f0; }
.alert .icon { font-size: 1.1rem; line-height: 1.3; }

/* --- Empty state ------------------------------------------------------ */
.empty { text-align: center; padding: 56px 24px; background: var(--card); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); }
.empty .emoji { font-size: 2.6rem; }
.empty h2 { color: var(--green-deep); margin-top: 10px; }
.empty p { color: var(--muted); max-width: 46ch; margin: 6px auto 0; }

/* --- Collapsible (mixed section) -------------------------------------- */
details.collapsible { margin-top: 8px; }
details.collapsible > summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 10px; padding: 4px 0; }
details.collapsible > summary::-webkit-details-marker { display: none; }
details.collapsible > summary::before { content: "▸"; color: var(--muted); transition: transform .15s; }
details.collapsible[open] > summary::before { transform: rotate(90deg); }

/* --- Dialog (escalate / close) ---------------------------------------- */
dialog {
  border: none; border-radius: var(--radius-lg); padding: 0; width: min(560px, 94vw);
  box-shadow: var(--shadow-lg); color: var(--ink);
}
dialog::backdrop { background: rgba(10, 23, 48, .45); backdrop-filter: blur(2px); }
.dialog__head { padding: 20px 24px 8px; }
.dialog__head h3 { margin: 0; }
.dialog__head p { color: var(--muted); font-size: .88rem; margin: 6px 0 0; }
.dialog__body { padding: 12px 24px 4px; max-height: 62vh; overflow-y: auto; }
.dialog__foot { padding: 14px 24px 22px; display: flex; gap: 10px; justify-content: flex-end; }
.dialog__quote { background: var(--bg-alt); border-left: 3px solid var(--navy); padding: 10px 14px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .9rem; color: var(--ink); margin-bottom: 14px; }

/* Recipient picker cards inside the escalate dialog */
.recipient-list { display: flex; flex-direction: column; gap: 8px; }
.recipient-opt { display: flex; align-items: flex-start; gap: 11px; padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: var(--radius); cursor: pointer; transition: border-color .12s, background .12s; }
.recipient-opt:hover { background: var(--bg-alt); }
.recipient-opt input { margin-top: 3px; width: auto; }
.recipient-opt.is-hidden { display: none; }
.recipient-opt .r-name { font-weight: 700; color: var(--navy-700); }
.recipient-opt .r-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }

/* --- Tables (settings) ------------------------------------------------ */
.table-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.data th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; padding: 13px 18px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
table.data td { padding: 14px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover td { background: #fcfdfe; }
.pill-yes { color: var(--green-deep); font-weight: 700; }
.pill-no { color: var(--muted-2); font-weight: 600; }

/* Settings sub-nav */
.subnav { display: flex; gap: 6px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.subnav a { padding: 10px 16px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; }
.subnav a:hover { color: var(--navy); text-decoration: none; }
.subnav a.is-active { color: var(--navy); border-bottom-color: var(--navy); }

/* --- Footer ----------------------------------------------------------- */
.site-footer { flex-shrink: 0; background: var(--navy-700); color: #c7d2e0; margin-top: 40px; }
.site-footer .container { padding-top: 30px; padding-bottom: 30px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-footer .foot-brand { display: flex; align-items: baseline; gap: 12px; }
.site-footer .brand-word { color: #fff; font-size: 1.35rem; }
.site-footer .foot-sub { align-self: center; font-size: .82rem; font-weight: 600; color: #8ea1bb; padding-left: 12px; border-left: 1px solid #ffffff22; }
.site-footer .foot-contact { font-size: .9rem; }
.site-footer .foot-contact a { color: var(--gold); font-weight: 600; }
.site-footer .foot-meta { width: 100%; border-top: 1px solid #ffffff1a; padding-top: 14px; font-size: .78rem; color: #8ea1bb; }

/* --- Utilities -------------------------------------------------------- */
.muted { color: var(--muted); }
.mono { font-variant-numeric: tabular-nums; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 14px; }
.flex { display: flex; gap: 10px; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.grow { flex: 1; }
.hr { height: 1px; background: var(--border); border: 0; margin: 22px 0; }

/* --- Responsive ------------------------------------------------------- */
@media (max-width: 720px) {
  .site-header .container { height: auto; padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; gap: 12px; }
  .nav { margin-left: 0; width: 100%; overflow-x: auto; }
  .brand small { display: none; }
  main { padding-top: 22px; }
  h1 { font-size: 1.55rem; }
  .filters .filter-actions { margin-left: 0; width: 100%; }
  .comment-card__top { flex-direction: column; }
  table.data { display: block; overflow-x: auto; white-space: nowrap; }
}
