:root {
  --indigo-50: #EEF2FF; --indigo-100: #E0E7FF; --indigo-400: #818CF8; --indigo-600: #4F46E5; --indigo-700: #4338CA;
  --emerald-50: #ECFDF5; --emerald-500: #10B981; --emerald-600: #059669;
  --amber-50: #FFFBEB; --amber-500: #F59E0B;
  --red-50: #FEF2F2; --red-500: #EF4444; --red-600: #DC2626;
  --sky-500: #0EA5E9;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB; --gray-300: #D1D5DB;
  --gray-400: #9CA3AF; --gray-500: #6B7280; --gray-700: #374151; --gray-900: #111827;

  /* Layout */
  --sidebar-width: 260px;

  /* Spacing scale */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;

  /* Radii */
  --radius-sm: 6px; --radius: 8px; --radius-md: 10px; --radius-lg: 12px; --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.18);

  /* Z-index layers */
  --z-sticky: 99; --z-topbar: 150; --z-backdrop: 150; --z-sidebar: 200; --z-toast: 1080;

  /* Motion */
  --transition: 0.15s ease;
  --transition-slow: 0.25s ease;

  /* Fluid typography (mobile-first, scales up with viewport) */
  --fs-hero: clamp(2.25rem, 6vw + 1rem, 3.25rem);
  --fs-h1: clamp(1.5rem, 3vw + 0.75rem, 1.75rem);
  --fs-h2: clamp(1.375rem, 2vw + 0.75rem, 2rem);
  --fs-title: clamp(1.25rem, 1.5vw + 0.75rem, 1.5rem);
}

* { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { color: var(--gray-700); background: var(--gray-50); }
h1, h2, h3, h4, h5, h6 { color: var(--gray-900); }

/* Buttons */
.btn-vai-primary { background: var(--indigo-600); border-color: var(--indigo-600); border-radius: 8px; font-weight: 500; padding: 10px 20px; color: #fff; }
.btn-vai-primary:hover { background: var(--indigo-700); border-color: var(--indigo-700); color: #fff; }
.btn-vai-secondary { border: 1px solid var(--gray-300); color: var(--gray-700); border-radius: 8px; font-weight: 500; padding: 10px 20px; background: #fff; }
.btn-vai-secondary:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--gray-900); }
.btn-vai-ghost { display: inline-flex; align-items: center; white-space: nowrap; background: transparent; border: none; color: var(--indigo-600); font-weight: 500; padding: 6px 10px; border-radius: 8px; }
.btn-vai-ghost:hover { background: var(--indigo-50); color: var(--indigo-700); }

/* Form */
.form-vai .form-label { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 4px; }
.form-vai .form-control { border: 1px solid var(--gray-300); border-radius: 8px; padding: 10px 14px; font-size: 0.9375rem; }
.form-vai .form-control:focus { border-color: var(--indigo-600); box-shadow: 0 0 0 3px var(--indigo-100); }
.form-vai .form-control::placeholder { color: var(--gray-400); }

/* Cards */
.card-vai { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 24px; transition: box-shadow 0.2s; }
.card-vai:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

/* Stat cards */
.stat-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 18px 20px; height: 100%; transition: box-shadow 0.2s; }
.stat-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.stat-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; line-height: 1.1; color: var(--gray-900); }
.stat-label { font-size: 0.8125rem; color: var(--gray-500); font-weight: 500; }


/* Sidebar (mobile-first: off-canvas drawer, revealed via the topbar toggle) */
.sidebar { width: var(--sidebar-width); max-width: 80vw; background: #fff; border-right: 1px solid var(--gray-200); min-height: 100vh; padding: 24px 16px; position: fixed; top: 0; left: 0; bottom: 0; z-index: var(--z-sidebar); display: flex; flex-direction: column; overflow-y: auto; transform: translateX(-100%); transition: transform var(--transition-slow); }
.sidebar.open { transform: translateX(0); box-shadow: 0 10px 40px rgba(15, 23, 42, 0.18); }
.sidebar .logo { font-weight: 700; font-size: 1.25rem; color: var(--gray-900); text-decoration: none; display: block; padding: 0 8px 24px; }
.sidebar .logo span { color: var(--indigo-600); }
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--gray-500); text-decoration: none; font-size: 0.9375rem; font-weight: 500; transition: all 0.15s; }
.sidebar-nav li a:hover { background: var(--gray-100); color: var(--gray-900); }
.sidebar-nav li a.active { background: var(--indigo-50); color: var(--indigo-600); }
.sidebar-nav li a i { font-size: 1.125rem; }
.sidebar-divider { height: 1px; background: var(--gray-200); margin: 16px 0; }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 12px; }
.sidebar-user-link { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; text-decoration: none; border-radius: 8px; padding: 4px; margin: -4px; transition: background 0.15s; }
.sidebar-user-link:hover { background: var(--gray-100); }
.sidebar-user .avatar { width: 36px; height: 36px; border-radius: 9999px; background: var(--indigo-100); color: var(--indigo-600); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.875rem; flex-shrink: 0; }
.sidebar-user .user-info { flex: 1; min-width: 0; }
.sidebar-user .user-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user .user-email { font-size: 0.75rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Mobile topbar + backdrop (hidden on desktop) */
.app-topbar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 150; }
.app-topbar .logo { font-weight: 700; font-size: 1.25rem; color: var(--gray-900); text-decoration: none; }
.app-topbar .logo span { color: var(--indigo-600); }
.sidebar-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--gray-200); border-radius: 8px; background: #fff; color: var(--gray-700); font-size: 1.375rem; cursor: pointer; flex-shrink: 0; }
.sidebar-toggle:hover { background: var(--gray-100); }
.sidebar-backdrop { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45); z-index: 150; opacity: 0; transition: opacity 0.25s ease; }
.sidebar-backdrop.show { opacity: 1; }

.main-content { padding: 20px 16px; }

/* Desktop layout: pinned sidebar, no topbar/backdrop */
@media (min-width: 769px) {
  .app-topbar { display: none; }
  .sidebar { transform: none; box-shadow: none; max-width: none; overflow-y: visible; z-index: 100; }
  .sidebar-backdrop { display: none; }
  .main-content { margin-left: var(--sidebar-width); padding: 32px 40px; }
}


/* Generic avatar (outside the sidebar, e.g. org member lists) */
.avatar { width: 36px; height: 36px; border-radius: 9999px; background: var(--indigo-100); color: var(--indigo-600); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.875rem; flex-shrink: 0; }

/* Badges */
.badge-vai { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 9999px; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; background: var(--indigo-50); color: var(--indigo-600); }
.badge-published { background: var(--emerald-50); color: var(--emerald-600); }
.badge-draft { background: var(--gray-100); color: var(--gray-500); }
.badge-closed { background: var(--red-50); color: var(--red-500); }
.badge-active { background: var(--emerald-50); color: var(--emerald-600); }
.badge-support-open { background: var(--indigo-50); color: var(--indigo-600); }
.badge-support-in_progress { background: var(--amber-50, #fffbeb); color: var(--amber-600, #d97706); }
.badge-support-closed { background: var(--gray-100); color: var(--gray-500); }
.badge-trialing { background: var(--indigo-50); color: var(--indigo-600); }
.badge-expired { background: var(--gray-100); color: var(--gray-500); }
.badge-past_due { background: var(--amber-50); color: var(--amber-500); }
.badge-cancelled { background: var(--red-50); color: var(--red-500); }

/* Trial Banner */
.trial-banner { background: var(--amber-50); border: 1px solid #FDE68A; border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.trial-banner i { color: var(--amber-500); font-size: 1.25rem; }
.trial-banner .trial-text { flex: 1; font-size: 0.875rem; color: var(--gray-700); }
.trial-banner .trial-text strong { color: var(--gray-900); }
/* Ended-trial variant: shown once the trial expires and the user has not
   subscribed. Reuses the banner layout with a red/alert accent. */
.trial-banner.trial-banner-ended { background: var(--red-50); border-color: #FCA5A5; }
.trial-banner.trial-banner-ended i { color: var(--red-500); }

/* Locked controls: greyed out and non-interactive while the user's trial has
   ended (their data stays visible, but create/share/key actions are paused
   until they subscribe). Disabled buttons get the same treatment. */
.is-locked, a.is-locked { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn-vai-ghost:disabled, .btn-vai-primary:disabled, .btn-vai-secondary:disabled { opacity: 0.5; cursor: not-allowed; }


/* Flash messages */
.flash-container { margin-bottom: 16px; }
.alert-vai { border-radius: 8px; padding: 12px 16px; font-size: 0.875rem; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.alert-vai .alert-vai-text { flex: 1; }
.alert-vai-close { background: transparent; border: 0; padding: 0 4px; margin-left: 8px; color: inherit; opacity: 0.6; cursor: pointer; font-size: 0.875rem; line-height: 1; }
.alert-vai-close:hover { opacity: 1; }
.alert-vai.success { background: var(--emerald-50); color: #065F46; border: 1px solid #A7F3D0; }
.alert-vai.error { background: var(--red-50); color: #991B1B; border: 1px solid #FECACA; }
.alert-vai.warning { background: var(--amber-50); color: #92400E; border: 1px solid #FDE68A; }
.alert-vai.info { background: var(--indigo-50); color: #3730A3; border: 1px solid var(--indigo-100); }
.toast-stack { position: fixed; top: 16px; right: 16px; z-index: 1080; display: flex; flex-direction: column; gap: 8px; width: min(360px, calc(100vw - 32px)); }
.toast-stack .alert-vai { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); animation: toastIn 0.18s ease-out; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Social buttons */
.btn-social { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 10px 20px; border: 1px solid var(--gray-300); border-radius: 8px; background: #fff; color: var(--gray-700); font-weight: 500; font-size: 0.9375rem; text-decoration: none; transition: all 0.15s; }
.btn-social:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--gray-900); }

/* Divider */
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 0.8125rem; color: var(--gray-400); }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* Password strength meter (advisory, never blocking) */
.pw-strength-bar { flex: 1; height: 6px; border-radius: 9999px; background: var(--gray-200); overflow: hidden; }
.pw-strength-bar > i { display: block; height: 100%; width: 0; border-radius: 9999px; transition: width 0.2s ease, background 0.2s ease; }


/* ---------------------------------------------------------------------------
   Shared typography helpers (homogeneous headings/text across every screen)
--------------------------------------------------------------------------- */
.page-title { font-size: var(--fs-h1); font-weight: 700; margin: 0; color: var(--gray-900); line-height: 1.2; }
.section-title { font-size: var(--fs-title); font-weight: 700; margin: 0; color: var(--gray-900); line-height: 1.25; }
.subsection-title { font-size: 1.125rem; font-weight: 600; margin: 0; color: var(--gray-900); }
.page-subtitle { font-size: 0.9375rem; color: var(--gray-500); margin: 0; }
.muted-text { font-size: 0.875rem; color: var(--gray-500); }
.eyebrow { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--indigo-600); }

/* Page header row: title block + actions; wraps gracefully on small screens */
.page-header { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-6); }
.page-header .header-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   Action bar (sticky bottom bar for editors) — replaces the old fixed bar that
   hard-coded left:260px and broke on mobile. Mobile-first: full width sticky;
   on desktop it is offset by the pinned sidebar.
--------------------------------------------------------------------------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); flex-wrap: wrap;
  background: #fff; border-top: 1px solid var(--gray-200); padding: 12px 16px; box-shadow: 0 -2px 12px rgba(0,0,0,0.04); }
.action-bar .action-group { display: flex; gap: var(--space-2); flex-wrap: wrap; }
@media (min-width: 769px) {
  .action-bar { left: var(--sidebar-width); padding: 16px 40px; }
}

/* ---------------------------------------------------------------------------
   Results bar chart rows — fluid label/track/count that never overflow.
--------------------------------------------------------------------------- */
.results-bar { display: flex; align-items: center; gap: var(--space-3); margin-bottom: 10px; }
.results-bar .rb-label { flex: 1 1 40%; min-width: 0; font-size: 0.8125rem; color: var(--gray-700); text-align: right;
  overflow-wrap: anywhere; }
.results-bar .rb-track { flex: 2 1 0; height: 28px; background: var(--gray-100); border-radius: var(--radius-sm); overflow: hidden; }
.results-bar .rb-fill { height: 100%; border-radius: var(--radius-sm); display: flex; align-items: center; padding-left: 10px; }
.results-bar .rb-count { flex: 0 0 auto; min-width: 32px; font-size: 0.8125rem; color: var(--gray-500); text-align: right; }
@media (max-width: 480px) {
  .results-bar { flex-wrap: wrap; gap: var(--space-2); }
  .results-bar .rb-label { flex: 1 1 100%; text-align: left; }
  .results-bar .rb-track { flex: 1 1 auto; }
}

/* ---------------------------------------------------------------------------
   Drag-and-drop reordering (survey editor) — touch-friendly handle + feedback
--------------------------------------------------------------------------- */
.drag-handle { display: inline-flex; align-items: center; justify-content: center;
  width: 44px; min-height: 44px; margin: -10px 4px -10px -8px; padding: 4px;
  color: var(--gray-300); font-size: 1.25rem; cursor: grab;
  touch-action: none; -webkit-user-select: none; user-select: none;
  -webkit-touch-callout: none; flex-shrink: 0; transition: color var(--transition); }
.drag-handle:hover { color: var(--gray-500); }
.drag-handle:active { cursor: grabbing; color: var(--indigo-600); }

/* The card being held: lift it slightly so it reads as "picked up". */
.sortable-chosen { box-shadow: var(--shadow-md); }

/* The floating clone that follows the finger/cursor (forceFallback): compact,
   elevated and slightly tilted for an agile, tactile feel. */
.sortable-drag { box-shadow: var(--shadow-lg); transform: scale(1.02) rotate(-0.6deg);
  opacity: 0.97; cursor: grabbing; }

/* The gap left in the list is shown as a faded, dashed drop zone that keeps the
   card's exact footprint. Preserving the box dimensions (no height/padding/
   margin changes) is essential: SortableJS animates the surrounding cards with a
   FLIP transform pass, and collapsing the placeholder mid-drag desynchronises
   that math and makes neighbouring cards overlap. We only fade the fill and hide
   the inner content (with `visibility` so it still occupies space). */
.sortable-ghost { background: var(--indigo-50) !important;
  border: 1px dashed var(--indigo-400) !important;
  box-shadow: none !important; }
.sortable-ghost > * { visibility: hidden; }

/* Confirmation flash applied to a card after it lands in its new position. */
@keyframes cardReordered {
  0%   { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); background-color: var(--indigo-50); }
  15%  { box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.35); background-color: var(--indigo-50); }
  100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); background-color: #fff; }
}
.card-reordered { animation: cardReordered 1.9s ease-out; }

@media (prefers-reduced-motion: reduce) {
  .card-reordered { animation: none; }
}

/* ---------------------------------------------------------------------------
   Responsive tuning for small phones and tablets
--------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .main-content { padding: 16px 14px; }
  /* On the light-grey app background the thin 1px card border can blend in on
     small screens, making section boxes hard to tell apart. Add a subtle
     persistent shadow so each card keeps the same distinct "raised panel" look
     it has on desktop (where the shadow appears on hover). */
  .card-vai { padding: 18px 16px; box-shadow: var(--shadow-sm); }
  .stat-card { padding: 14px 16px; gap: 12px; box-shadow: var(--shadow-sm); }
  .stat-icon { width: 40px; height: 40px; font-size: 1.125rem; }
  .stat-value { font-size: 1.25rem; }
}
@media (max-width: 400px) {
  .main-content { padding: 14px 12px; }
  .btn-vai-primary, .btn-vai-secondary { padding: 10px 16px; }
}

/* ---------------------------------------------------------------------------
   Language switcher (flag picker)
--------------------------------------------------------------------------- */
.lang-switcher .lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 8px;
  background: #fff;
  color: var(--gray-700, #374151);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
.lang-switcher .lang-switcher-toggle:hover {
  background: var(--gray-50, #f9fafb);
}
.lang-switcher .lang-switcher-toggle .fi {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.lang-switcher .lang-switcher-label { letter-spacing: 0.02em; }
.lang-switcher .lang-switcher-menu {
  min-width: 180px;
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.lang-switcher .lang-switcher-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.9375rem;
}
.lang-switcher .lang-switcher-menu .dropdown-item.active {
  background: var(--indigo-50, #eef2ff);
  color: var(--indigo-700, #4338ca);
  font-weight: 600;
}
/* Sidebar variant: full-width row that sits above the user card. */
.lang-switcher-sidebar { width: 100%; margin-bottom: 12px; }
/* Center the flag + language code, and pin the dropdown caret to the far
   right edge so the toggle reads as a balanced, full-width control. */
.lang-switcher-sidebar .lang-switcher-toggle {
  width: 100%;
  position: relative;
  justify-content: center;
}
.lang-switcher-sidebar .lang-switcher-toggle::after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
/* The toggle spans the whole sidebar, so the menu must line up with its left
   edge and match its width instead of being right-aligned and narrower (which
   left it visually "floating" off to one side above the button). */
.lang-switcher-sidebar .lang-switcher-menu {
  width: 100%;
  min-width: 0;
}

/* ── Audit log (enterprise) ──────────────────────────────────────────────
   Mobile-first: the filter bar stacks vertically and each log entry renders
   as a self-contained card (label/value pairs via [data-label]). On wider
   viewports the bar lays out inline and the entries collapse into a true
   data table. */
.audit-filters { margin-bottom: 0; }
.audit-filters-grid { display: flex; flex-direction: column; gap: 12px; }
.audit-filter { display: flex; flex-direction: column; }
.audit-filter .form-label { font-size: 0.8125rem; font-weight: 500; color: var(--gray-700); margin-bottom: 4px; }
.audit-filter-actions { flex-direction: row; align-items: flex-end; gap: 8px; }
.audit-filter-actions .btn { flex: 1; }

.audit-icon { flex: none; width: 32px; height: 32px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; }

.audit-table-wrap { width: 100%; }
.audit-table { width: 100%; border-collapse: collapse; }
.audit-table thead { display: none; }
.audit-table tbody tr {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.audit-table tbody tr:last-child { border-bottom: 0; }
.audit-table td {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 4px 0;
  text-align: right;
  font-size: 0.875rem;
}
.audit-table td::before {
  content: attr(data-label);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray-400);
  text-align: left;
  flex: none;
}
/* The event cell leads each card: no label, full-width emphasis. */
.audit-table td[data-label]:first-child { text-align: left; padding-bottom: 8px; }
.audit-table td[data-label]:first-child::before { display: none; }

@media (min-width: 769px) {
  .audit-filters-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1.6fr) repeat(3, minmax(120px, 1fr)) auto;
    align-items: end;
    gap: 12px;
  }
  .audit-table-wrap { overflow-x: auto; }
  .audit-table thead { display: table-header-group; }
  .audit-table tbody tr { display: table-row; padding: 0; }
  .audit-table thead th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--gray-500);
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    white-space: nowrap;
  }
  .audit-table td {
    display: table-cell;
    text-align: left;
    padding: 14px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--gray-100);
  }
  .audit-table td::before { display: none; }
  .audit-table tbody tr:last-child td { border-bottom: 0; }
  .audit-table td[data-label]:first-child { padding-bottom: 14px; }
}
