/* ============================================================
   BINAREX PLATFORM — GLOBAL CSS
   Brand: Blue + Red (binarexdeals.com)
   Responsive, Mobile-First
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:    #04081a;
  --bg-secondary:  #080f24;
  --bg-card:       #0c1530;
  --bg-card-hover: #111e3a;

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-glow:   rgba(0,102,255,0.35);

  /* Brand colours — Blue + Red */
  --blue:          #0066ff;
  --blue-dark:     #004ecc;
  --blue-light:    #4d94ff;
  --blue-glow:     rgba(0,102,255,0.18);

  --red:           #e63030;
  --red-dark:      #c42020;
  --red-light:     #ff6060;
  --red-glow:      rgba(230,48,48,0.18);

  /* Keep teal as accent (wallets, balance) */
  --teal:          #00d4aa;
  --teal-dark:     #00a884;

  --purple:        #6d28d9;
  --purple-light:  #a78bfa;
  --gold:          #f59e0b;
  --green:         #10b981;

  /* Text */
  --text-primary:  #dee6fa;
  --text-primary2:  #0d1c47;
  --text-secondary:#8da0c0;
  --text-muted:    #556080;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #e63030 100%);
  --gradient-blue:    linear-gradient(135deg, #0066ff 0%, #004ecc 100%);
  --gradient-red:     linear-gradient(135deg, #e63030 0%, #c42020 100%);
  --gradient-hero:    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(0,102,255,0.14) 0%, rgba(230,48,48,0.08) 50%, transparent 70%);
  --gradient-dark:    linear-gradient(135deg, #080f24 0%, #0c1530 100%);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  30px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(0,102,255,0.15);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
p  { color: var(--text-secondary); font-weight: 400; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
  border: none; font-family: var(--font-body); text-decoration: none;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--gradient-primary); color: #fff;
  box-shadow: 0 4px 16px rgba(0,102,255,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,102,255,0.45); color: #fff; }
.btn-secondary { background: rgba(0,102,255,0.12); color: var(--blue-light); border: 1px solid rgba(0,102,255,0.25); }
.btn-secondary:hover { background: rgba(0,102,255,0.2); color: var(--blue-light); }
.btn-danger { background: rgba(230,48,48,0.12); color: var(--red-light); border: 1px solid rgba(230,48,48,0.25); }
.btn-danger:hover { background: var(--gradient-red); color: #fff; }
.btn-success { background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.25); }
.btn-success:hover { background: var(--green); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; display: flex; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.form-control {
  width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition); outline: none; box-sizing: border-box;
}
.form-control:focus { border-color: var(--blue); background: rgba(0,102,255,0.05); box-shadow: 0 0 0 3px rgba(0,102,255,0.1); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: var(--bg-card); color: var(--text-primary); }
.form-hint { font-size: 0.76rem; color: var(--text-muted); margin-top: 5px; }
.required { color: var(--red); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── ALERTS ─────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.875rem; margin-bottom: 16px; line-height: 1.6;
}
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }
.alert-error   { background: rgba(230,48,48,0.1);  border: 1px solid rgba(230,48,48,0.3);  color: #fca5a5; }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; }
.alert-info    { background: rgba(0,102,255,0.08); border: 1px solid rgba(0,102,255,0.25); color: var(--blue-light); }

/* ── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px; font-size: 0.73rem;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.badge-blue   { background: rgba(0,102,255,0.15);  color: var(--blue-light);  border: 1px solid rgba(0,102,255,0.3);  }
.badge-red    { background: rgba(230,48,48,0.12);   color: var(--red-light);   border: 1px solid rgba(230,48,48,0.3);  }
.badge-teal   { background: rgba(0,212,170,0.12);   color: var(--teal);        border: 1px solid rgba(0,212,170,0.3);  }
.badge-green  { background: rgba(16,185,129,0.12);  color: var(--green);       border: 1px solid rgba(16,185,129,0.3); }
.badge-gold   { background: rgba(245,158,11,0.12);  color: var(--gold);        border: 1px solid rgba(245,158,11,0.3); }
.badge-purple { background: rgba(109,40,217,0.15);  color: var(--purple-light);border: 1px solid rgba(109,40,217,0.3); }
.badge-primary{ background: var(--gradient-primary); color: #fff; border: none; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
}
.card-glow {
  background: var(--bg-card); border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 0 32px rgba(0,102,255,0.08);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 20px; height: 68px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(4,8,26,0.95); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; height: 100%; gap: 20px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  color: var(--text-primary); text-decoration: none;
}
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
}
.navbar-logo span { color: var(--red-light); }
.navbar-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.navbar-nav a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.87rem;
  font-weight: 500; color: var(--text-secondary); transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.navbar-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
.navbar-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: rgba(4,8,26,0.98);
  z-index: 999; flex-direction: column; padding: 80px 28px 28px; gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); padding: 100px 20px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 30%, rgba(0,102,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 70%, rgba(230,48,48,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.3);
  border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--blue-light);
  margin-bottom: 24px; }
.hero-title { margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 540px; margin: 0 auto; }

/* ── GRID HELPERS ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(0,102,255,0.3); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.feature-icon.blue   { background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.2); }
.feature-icon.red    { background: rgba(230,48,48,0.12);  border: 1px solid rgba(230,48,48,0.2); }
.feature-icon.teal   { background: rgba(0,212,170,0.12);  border: 1px solid rgba(0,212,170,0.2); }
.feature-icon.green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.feature-icon.gold   { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.feature-icon.purple { background: rgba(109,40,217,0.15); border: 1px solid rgba(109,40,217,0.2); }

/* ── RANK / PRICING CARDS ───────────────────────────────────── */
.rank-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px; text-align: center;
  transition: var(--transition); position: relative;
}
.rank-card.featured {
  border-color: var(--blue); background: rgba(0,102,255,0.04);
  box-shadow: 0 0 32px rgba(0,102,255,0.12);
}
.rank-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: #fff; padding: 3px 14px;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
}
.rank-features { text-align: left; margin: 0; }
.rank-features li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.rank-features li::before { content: '✓'; color: var(--blue-light); font-weight: 700; flex-shrink: 0; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.step-card {
  position: relative; text-align: center;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  color: var(--text-primary); transition: var(--transition);
}
.faq-question:hover { color: var(--blue-light); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 16px; font-size: 0.9rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a, .footer-col p { font-size: 0.875rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; margin-bottom: 0; }

/* ── STAT CARDS (dashboard) ─────────────────────────────────── */
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 22px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.stat-card:hover { border-color: rgba(0,102,255,0.25); }
.stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 12px;
}
.stat-icon.blue   { background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.2); }
.stat-icon.red    { background: rgba(230,48,48,0.12);  border: 1px solid rgba(230,48,48,0.2); }
.stat-icon.teal   { background: rgba(0,212,170,0.12);  border: 1px solid rgba(0,212,170,0.2); }
.stat-icon.green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.stat-icon.gold   { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.stat-icon.purple { background: rgba(109,40,217,0.15); border: 1px solid rgba(109,40,217,0.2); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.stat-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; line-height: 1.1; }
.stat-change { font-size: 0.75rem; margin-top: 4px; }
.stat-change.up     { color: var(--green); }
.stat-change.down   { color: var(--red); }
.stat-change.neutral{ color: var(--text-muted); }

/* ── DATA SECTIONS ──────────────────────────────────────────── */
.data-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.data-section-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.data-section-header h3 { font-size: 0.95rem; margin: 0; }

/* ── TABLE ──────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; }
thead tr { border-bottom: 2px solid var(--border); }
th {
  padding: 11px 16px; text-align: left; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); white-space: nowrap;
}
td { padding: 13px 16px; font-size: 0.875rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(0,102,255,0.03); }

/* ── PAGE HEADER ────────────────────────────────────────────── */
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 4px; }
.page-header p  { font-size: 0.9rem; }

/* ── STATUS DOTS ────────────────────────────────────────────── */
.status-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; }
.status-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.status-dot.active::before  { background: var(--green); box-shadow: 0 0 6px var(--green); }
.status-dot.pending::before { background: var(--gold); }
.status-dot.inactive::before{ background: var(--text-muted); }

/* ── SPINNER ────────────────────────────────────────────────── */
.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; animation: spin 0.8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAV BADGE ──────────────────────────────────────────────── */
.nav-badge {
  background: var(--red); color: #fff; font-size: 0.65rem;
  font-weight: 700; border-radius: 100px; padding: 1px 5px; min-width: 18px; text-align: center;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg,rgba(0,102,255,0.08),rgba(230,48,48,0.06));
  border: 1px solid rgba(0,102,255,0.2); border-radius: var(--radius-xl);
  padding: 64px 40px; text-align: center;
}

/* ── TRUST BAND ─────────────────────────────────────────────── */
.trust-band {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0; background: rgba(0,102,255,0.03);
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }

/* ── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-bar .form-control { padding: 8px 12px; font-size: 0.85rem; }

/* ── NOTIFICATION BELL ──────────────────────────────────────── */
.notif-btn { position: relative; font-size: 1.2rem; cursor: pointer; padding: 6px; }
.notif-count {
  position: absolute; top: -2px; right: -4px;
  background: var(--red); color: #fff; font-size: 0.62rem;
  font-weight: 700; border-radius: 50%; width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-toggle { display: block; margin-left: auto; }
  .navbar-actions .btn:not(.btn-primary) { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-section { padding: 40px 24px; }
  .hero { padding: 90px 20px 48px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { padding: 12px 24px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .table-wrapper { font-size: 0.82rem; }
  th, td { padding: 10px 12px; }
}
