/* ═══════════════════════════════════════════════════════════════
   network.reyconnect.com.do — Design System v1
   Rey Connect, SRL · RNC 132007409 · AS273836
   Identidad técnica del operador — distinta de AuraLink (marca comercial)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ── */
:root {
  --rc-red: #E5181B;
  --rc-red-mid: #b3141a;
  --rc-red-dim: rgba(229, 24, 27, .10);
  --rc-red-glow: rgba(229, 24, 27, .28);

  --ok: #16a34a;
  --ok-dim: rgba(22, 163, 74, .12);
  --warn: #d97706;
  --warn-dim: rgba(217, 119, 6, .12);

  --bg: #f5f5f5;
  --bg-alt: #ececec;
  --surface: #fff;
  --surface2: #f9f9f9;
  --surface3: #efefef;
  --border: #e2e2e2;
  --border-soft: #ebebeb;

  --text: #111111;
  --text-dim: #4a4a4a;
  --text-muted: #8a8a8a;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --shadow-accent: 0 4px 32px rgba(229,24,27,.22);

  --r: 16px;
  --r-sm: 10px;
  --r-xs: 8px;
  --r-pill: 999px;
  --t: .25s cubic-bezier(.22,1,.36,1);
  --t-fast: .15s ease;

  --nav-pill-bg: rgba(229,24,27,.06);
  --nav-pill-blur: blur(24px) saturate(200%);
  --nav-pill-border: rgba(20,20,20,.14);
  --nav-text: #111111;
  --nav-text-muted: #6b6b6b;
  --nav-active-bg: var(--rc-red);
  --nav-active-text: #fff;

  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-alt: #101010;
  --surface: #161616;
  --surface2: #1c1c1c;
  --surface3: #232323;
  --border: #2a2a2a;
  --border-soft: #202020;
  --text: #f2f2f2;
  --text-dim: #a8a8a8;
  --text-muted: #6f6f6f;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
  --shadow-md: 0 4px 20px rgba(0,0,0,.6);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.7);

  --nav-pill-bg: rgba(10,10,10,.75);
  --nav-pill-border: rgba(255,90,84,.20);
  --nav-text: #f2f2f2;
  --nav-text-muted: rgba(242,242,242,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background var(--t), color var(--t);
  overflow-x: hidden;
}

a { color: var(--rc-red); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--rc-red-mid); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.mono { font-family: var(--mono); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ═══════════════════════════════════════
   NAV — Island / Liquid Glass (blue variant)
   ═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(244,245,247,.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(229,24,27,.08);
}
[data-theme="dark"] .nav { background: rgba(7,9,13,.62); border-bottom: 1px solid rgba(255,90,84,.12); }

.nav-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-decoration: none; flex-shrink: 0; }
.nav-brand-name { font-family: var(--mono); font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.nav-brand-name span { color: var(--rc-red); }
.nav-byline { font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--nav-text-muted); }

.nav-links { display: flex; align-items: center; gap: 3px; list-style: none; background: var(--nav-pill-bg);
  backdrop-filter: var(--nav-pill-blur); -webkit-backdrop-filter: var(--nav-pill-blur);
  border: 1px solid var(--nav-pill-border); border-radius: var(--r-pill); padding: 5px 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 32px rgba(229,24,27,.08), 0 2px 8px rgba(0,0,0,.06); }
.nav-links li { display: flex; align-items: center; }
.nav-links a { display: block; font-size: 14px; font-weight: 500; color: var(--nav-text); padding: 7px 15px;
  border-radius: var(--r-pill); transition: all var(--t-fast); white-space: nowrap; letter-spacing: -.01em; }
.nav-links a:hover { background: rgba(229,24,27,.12); color: var(--rc-red); }
.nav-links a.active { background: var(--rc-red); color: #fff !important; font-weight: 600; box-shadow: 0 2px 10px rgba(229,24,27,.35); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.theme-toggle { display: flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--nav-pill-bg); backdrop-filter: var(--nav-pill-blur); -webkit-backdrop-filter: var(--nav-pill-blur);
  border: 1px solid var(--nav-pill-border); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 2px 8px rgba(0,0,0,.06);
  color: var(--nav-text); font-size: 13px; font-weight: 500; transition: all var(--t-fast); cursor: pointer; }
.theme-toggle:hover { border-color: rgba(229,24,27,.4); color: var(--rc-red); }
.theme-toggle svg { width: 15px; height: 15px; flex-shrink: 0; color: inherit; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

.btn-nav-portal { font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--r-pill); background: var(--rc-red); color: #fff !important;
  box-shadow: 0 2px 12px rgba(229,24,27,.3); transition: all var(--t-fast); }
.btn-nav-portal:hover { background: #0f52b5; transform: translateY(-1px); color: #fff !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.nav-mobile { position: fixed; inset: 72px 0 0 0; z-index: 999; background: var(--bg); transform: translateX(100%);
  transition: transform var(--t); overflow-y: auto; padding: 24px; }
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.nav-mobile a { display: block; padding: 14px 16px; font-size: 17px; font-weight: 600; color: var(--text); border-radius: var(--r-sm); }
.nav-mobile a.active { background: var(--rc-red-dim); color: var(--rc-red); }

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { margin-bottom: 48px; }
.section-eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rc-red); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--rc-red); border-radius: 2px; }
.section-title { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-dim); max-width: 620px; line-height: 1.65; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--r-pill);
  background: var(--rc-red); color: #fff; font-size: 15px; font-weight: 600; border: none; transition: all var(--t-fast); cursor: pointer; }
.btn-primary:hover { background: #0f52b5; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px var(--rc-red-glow); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-pill);
  background: var(--surface); color: var(--text); font-size: 15px; font-weight: 600; border: 1.5px solid var(--border); transition: all var(--t-fast); cursor: pointer; }
.btn-secondary:hover { border-color: var(--rc-red); color: var(--rc-red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary svg, .btn-secondary svg, .btn-primary .bx, .btn-secondary .bx { width: 18px; height: 18px; }

/* ═══════════════════════════════════════
   HERO — Signature: terminal-style resource panel
   ═══════════════════════════════════════ */
.hero { min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 140px 24px 80px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(circle at 15% 20%, rgba(229,24,27,.10), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(229,24,27,.06), transparent 50%); }
.hero-grid { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(229,24,27,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(229,24,27,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent); }
[data-theme="dark"] .hero-grid { opacity: .35; }

.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; max-width: 1160px; margin: 0 auto; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--rc-red); background: var(--rc-red-dim);
  border: 1px solid rgba(229,24,27,.2); padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 22px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px var(--ok-dim); }
.hero-title { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; letter-spacing: -.035em; line-height: 1.06; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--rc-red); }
.hero-desc { font-size: 17px; color: var(--text-dim); max-width: 500px; margin-bottom: 34px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Terminal panel */
.panel { background: #0c0c0c; border: 1px solid rgba(255,90,84,.25); border-radius: var(--r); box-shadow: var(--shadow-lg); overflow: hidden; }
.panel-head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #141414; border-bottom: 1px solid rgba(255,90,84,.15); }
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot.r { background: #ff5f57; } .panel-dot.y { background: #febc2e; } .panel-dot.g { background: #28c840; }
.panel-title { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: #7a7a7a; }
.panel-body { padding: 22px 20px; font-family: var(--mono); font-size: 13.5px; line-height: 2; color: #e8e8e8; }
.panel-row { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; border-bottom: 1px dashed rgba(150,150,150,.15); }
.panel-row:last-child { border-bottom: none; }
.panel-key { color: #8a8a8a; }
.panel-val { color: #f5f5f5; font-weight: 600; }
.panel-val.blue { color: #ff8f89; }
.status-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-pill); }
.status-chip.ok { background: rgba(22,163,74,.18); color: #4ade80; }
.status-chip.warn { background: rgba(217,119,6,.2); color: #fbbf24; }
.status-chip.crit { background: rgba(229,24,27,.18); color: #fb7185; }

/* ═══════════════════════════════════════
   STAT / RESOURCE CARDS
   ═══════════════════════════════════════ */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 26px 22px; transition: all var(--t); }
.stat-card:hover { border-color: rgba(229,24,27,.35); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-label { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.stat-value { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -.01em; word-break: break-word; }
.stat-value.blue { color: var(--rc-red); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: all var(--t); }
.info-card:hover { border-color: rgba(229,24,27,.3); box-shadow: var(--shadow-md); }
.info-card-icon { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--rc-red-dim); color: var(--rc-red);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
.info-card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.info-card-desc { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }

/* ═══════════════════════════════════════
   TABLES
   ═══════════════════════════════════════ */
.data-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.data-table th { text-align: left; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); background: var(--surface2); padding: 14px 18px; border-bottom: 1px solid var(--border); }
.data-table td { padding: 15px 18px; border-bottom: 1px solid var(--border-soft); color: var(--text-dim); }
.data-table tr:last-child td { border-bottom: none; }
.data-table td.mono, .data-table .mono-cell { font-family: var(--mono); color: var(--text); font-weight: 600; }

.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: var(--r-pill); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.badge.ok { background: var(--ok-dim); color: var(--ok); } .badge.ok .dot { background: var(--ok); }
.badge.warn { background: var(--warn-dim); color: var(--warn); } .badge.warn .dot { background: var(--warn); }
.badge.crit { background: var(--rc-red-dim); color: var(--rc-red); } .badge.crit .dot { background: var(--rc-red); }
.badge.neutral { background: var(--surface3); color: var(--text-muted); } .badge.neutral .dot { background: var(--text-muted); }

/* ═══════════════════════════════════════
   POLICY / DOC CONTENT
   ═══════════════════════════════════════ */
.doc-shell { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.doc-toc { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.doc-toc-title { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 12px; }
.doc-toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.doc-toc a { display: block; font-size: 13.5px; padding: 8px 10px; border-radius: var(--r-xs); color: var(--text-dim); font-weight: 500; }
.doc-toc a:hover { background: var(--rc-red-dim); color: var(--rc-red); }

.doc-body h2 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 44px 0 14px; scroll-margin-top: 100px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p { font-size: 15.5px; color: var(--text-dim); line-height: 1.75; margin-bottom: 14px; }
.doc-body ul, .doc-body ol { margin: 0 0 16px 22px; color: var(--text-dim); font-size: 15.5px; line-height: 1.75; }
.doc-body li { margin-bottom: 8px; }
.doc-body strong { color: var(--text); }
.doc-meta-box { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 22px; margin-bottom: 36px; }
.doc-meta-box .row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13.5px; border-bottom: 1px dashed var(--border); }
.doc-meta-box .row:last-child { border-bottom: none; }
.doc-meta-box .k { color: var(--text-muted); font-family: var(--mono); font-size: 12px; }
.doc-meta-box .v { color: var(--text); font-weight: 600; text-align: right; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.contact-card-role { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rc-red); margin-bottom: 10px; }
.contact-card-email { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--text); word-break: break-all; margin-bottom: 8px; display: block; }
.contact-card-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--mono); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.footer-brand-name span { color: var(--rc-red); }
.footer-brand-desc { font-size: 14px; color: var(--text-dim); max-width: 380px; line-height: 1.65; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col-title { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--text-dim); font-weight: 500; }
.footer-col a:hover { color: var(--rc-red); }

.footer-legal-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; margin-bottom: 24px; }
.footer-legal-title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.footer-legal-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); padding: 5px 12px; border-radius: var(--r-pill); }

/* ═══════════════════════════════════════
   MISC — page header (non-home pages)
   ═══════════════════════════════════════ */
.page-header { padding: 150px 0 60px; border-bottom: 1px solid var(--border); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .doc-shell { grid-template-columns: 1fr; }
  .doc-toc { position: static; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .theme-toggle-label, .btn-nav-portal span { display: none; }
  .nav-hamburger { display: flex; }
  .theme-toggle { padding: 8px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .stat-grid, .card-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Menú móvil: fuera de pantalla sin generar scroll ────────
   transform: translateX(100%) empuja el panel 100% a la derecha,
   así que su borde queda al doble del ancho de la ventana. Eso
   crea scroll horizontal fantasma y deja sus enlaces accesibles
   con Tab aunque no se vean.
   overflow-x: clip en html lo recorta sin convertir el elemento
   en contenedor de scroll (a diferencia de overflow: hidden, que
   rompería position: sticky en los descendientes).            */
html { overflow-x: clip; }

.nav-mobile {
  visibility: hidden;
  pointer-events: none;
}

.nav-mobile.open {
  visibility: visible;
  pointer-events: auto;
}


/* ── Correcciones de desborde en móvil ───────────────────────
   1. .doc-shell usaba 1fr, que equivale a minmax(auto, 1fr):
      el índice lateral se niega a encoger por debajo de su
      contenido y empuja la página.
   2. .data-table-wrap tenía overflow: hidden, que RECORTA la
      tabla en vez de permitir desplazarla. Los datos cortados
      quedaban inaccesibles.                                   */

@media (max-width: 980px) {
  .doc-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .doc-shell > *,
  .doc-toc,
  .doc-body {
    min-width: 0;
  }
}

.data-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  .data-table { font-size: 13.5px; }
  .data-table th,
  .data-table td { white-space: nowrap; }
}
