:root {
  --surface: #f8f9ff;
  --surface-canvas: #F8FAFC;
  --surface-subtle: #F1F5F9;
  --surface-lowest: #ffffff;
  --surface-low: #eff4ff;
  --surface-container: #e5eeff;
  --surface-high: #dce9ff;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-2: #475569;
  --primary: #ff7a00;
  --primary-hover: #E66A00;
  --secondary: #4059aa;
  --clinical: #2563EB;
  --clinical-deep: #0D47A1;
  --tertiary: #006c4b;
  --tertiary-soft: #00b682;
  --canine: #2563EB;
  --feline: #6B33A7;
  --danger: #EF4444;
  --warn: #F59E0B;
  --error-bg: #ffdad6;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, .12);
  --sidebar: 260px;
  --font: Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.app-body, body.login-body {
  font-family: var(--font);
  background: var(--surface-canvas);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; vertical-align: middle; }
.app-shell { min-height: 100vh; }
.sidebar {
  position: fixed; inset: 0 auto 0 0; width: var(--sidebar);
  background: #fff; box-shadow: var(--shadow); z-index: 50;
  display: flex; flex-direction: column; padding: 0 8px 16px;
  transition: transform .22s ease;
}
.sidebar-brand { display: flex; align-items: center; gap: 8px; height: 64px; padding: 0 8px; }
.brand-home { display: grid; place-items: center; flex-shrink: 0; }
.brand-logo {
  width: 40px; height: 40px; object-fit: contain; border-radius: 10px;
  background: #fff;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--secondary);
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.sidebar-brand strong { display: block; color: var(--secondary); font-size: 16px; }
.sidebar-brand span { font-size: 11px; color: var(--text-2); }
.sidebar-close { margin-left: auto; }
.nav-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); padding: 8px 12px 4px; }
.side-nav { display: flex; flex-direction: column; gap: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; color: var(--text-2); text-decoration: none; font-weight: 500;
}
.nav-link:hover { background: var(--surface-subtle); color: var(--text); }
.nav-link.is-active { background: var(--primary); color: #fff; font-weight: 700; }
.nav-link .chip { margin-left: auto; }
.sidebar-note { margin: auto 8px 0; background: var(--surface-subtle); border-radius: 12px; padding: 12px; }
.sidebar-note div { display: flex; justify-content: space-between; color: var(--secondary); font-size: 11px; text-transform: uppercase; font-weight: 700; }
.sidebar-note p { margin: 6px 0 0; color: var(--text-2); font-size: 12px; }
.sidebar-backdrop { display: none; }
.app-main { margin-left: var(--sidebar); min-height: 100vh; display: flex; flex-direction: column; transition: margin-left .22s ease; }
html.sidebar-collapsed .sidebar { transform: translateX(-105%); }
html.sidebar-collapsed .app-main { margin-left: 0; }
.topbar {
  position: sticky; top: 0; z-index: 40; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 0 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 12px; min-width: 0; }
.live-pill, .top-stats {
  display: flex; align-items: center; gap: 10px; background: var(--surface-subtle);
  border-radius: 999px; padding: 6px 12px; font-size: 12px; color: var(--text-2);
}
.top-stats { border-radius: 10px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--tertiary); box-shadow: 0 0 0 4px rgba(0,182,130,.25); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.canine { background: var(--canine); }
.dot.feline { background: var(--feline); }
.dot.ok { background: var(--tertiary); }
.search-box { position: relative; }
.search-box input {
  height: 36px; width: 240px; border: 0; background: var(--surface-subtle);
  border-radius: 8px; padding: 0 12px 0 34px; font: inherit;
}
.search-box .material-symbols-outlined { position: absolute; left: 8px; top: 8px; color: var(--text-2); font-size: 18px; }
.icon-btn {
  border: 0; background: transparent; width: 36px; height: 36px; border-radius: 8px;
  color: var(--text-2); cursor: pointer; position: relative; display: grid; place-items: center;
  text-decoration: none;
}
.icon-btn:hover { background: var(--surface-subtle); color: var(--text); }
.badge-dot { position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--danger); }
.user-chip { display: flex; align-items: center; gap: 8px; }
.user-chip strong { display: block; font-size: 13px; }
.user-chip small { color: var(--text-2); font-size: 11px; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--secondary);
  color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.link-btn { border: 0; background: transparent; color: var(--secondary); cursor: pointer; font-weight: 600; }
.content-canvas { flex: 1; padding: 20px; }
.app-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap; padding: 12px 20px; color: var(--text-2); font-size: 12px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand img { height: 22px; width: 22px; object-fit: contain; }
.footer-credit a { color: var(--secondary); font-weight: 700; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.page-section { display: flex; flex-direction: column; gap: 16px; }
.page-head, .toolbar, .card, .kpi {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px;
}
.page-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.kicker { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
h1, .h1 { font-size: 28px; margin: 4px 0; letter-spacing: -.02em; }
h2, .h2 { font-size: 18px; margin: 0 0 4px; }
.muted { color: var(--text-2); }
.tiny { font-size: 12px; }
.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }
.span-8 { grid-column: span 8; }
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.kpi { position: relative; overflow: hidden; }
.kpi::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--primary); }
.kpi.blue::before { background: var(--secondary); }
.kpi.green::before { background: var(--tertiary); }
.kpi.red::before { background: var(--danger); }
.kpi-top { display: flex; justify-content: space-between; align-items: flex-start; }
.kpi-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-low); color: var(--secondary); }
.kpi .num { font-size: 36px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.kpi-foot { margin-top: 12px; background: var(--surface-subtle); border-radius: 8px; padding: 8px; display: flex; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--text-2); }
.progress { height: 8px; background: var(--surface-container); border-radius: 999px; overflow: hidden; }
.progress > i { display: block; height: 100%; background: var(--secondary); }
.btn, button.btn, a.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; border-radius: 8px; padding: 10px 16px; font-weight: 600; cursor: pointer;
  text-decoration: none; font-family: inherit; font-size: 14px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-ghost { background: var(--surface-subtle); color: var(--text); }
.btn-danger { background: #FEE2E2; color: #DC2626; }
.btn-sm { padding: 6px 10px; font-size: 12px; }
.btn-block { width: 100%; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; border-radius: 999px;
  padding: 4px 10px; font-size: 11px; font-weight: 700;
}
.chip-orange { background: #ffdbc8; color: #753400; }
.chip-blue { background: #dce1ff; color: #264191; }
.chip-green { background: #D1FAE5; color: #065F46; }
.chip-purple { background: #F3E8FF; color: #6B33A7; }
.chip-warn { background: #FEF3C7; color: #92400E; }
.chip-danger { background: #FEE2E2; color: #DC2626; }
.chip-muted { background: var(--surface-subtle); color: var(--text-2); }
.table-wrap { overflow-x: auto; }
.toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
table.data-table, table.dataTable {
  width: 100% !important; border-collapse: collapse;
}
table.data-table th, table.dataTable thead th {
  background: var(--surface-subtle); color: var(--text-2); text-transform: uppercase;
  letter-spacing: .04em; font-size: 11px; text-align: left; padding: 10px 12px;
}
table.data-table td, table.dataTable tbody td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.data-table tbody tr:hover, table.dataTable tbody tr:hover { background: #EFF6FF; }
table.data-table tbody tr.is-selected, table.dataTable tbody tr.is-selected { background: #DBEAFE; }
.dataTables_wrapper { padding: 0 8px 8px; }
.dataTables_filter input, .dataTables_length select {
  border: 1px solid var(--border); border-radius: 8px; padding: 6px 8px; font-family: inherit;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); display: block; margin-bottom: 4px; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=date], input[type=time], input[type=password], input[type=search], select, textarea {
  width: 100%; height: 40px; border: 1px solid #CBD5E1; border-radius: 8px;
  padding: 0 12px; background: var(--surface-subtle); font-family: inherit; color: var(--text);
}
textarea { height: auto; padding: 10px 12px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--clinical); box-shadow: 0 0 0 3px rgba(37,99,235,.15); background: #fff;
}
.mono { font-family: var(--mono); font-size: 12px; }
.actions { display: flex; gap: 4px; justify-content: flex-end; }
.modal {
  position: fixed; inset: 0; background: rgba(15,23,42,.5); display: none;
  align-items: center; justify-content: center; padding: 16px; z-index: 80;
}
.modal.is-open { display: flex; }
.modal-card { background: #fff; border-radius: 16px; width: min(720px, 100%); max-height: 92vh; overflow: auto; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--surface-low); }
.modal-body { padding: 20px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 8px; padding: 0 20px 20px; }
.toast-host { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: #0F172A; color: #fff; border-radius: 12px; padding: 12px 16px;
  min-width: 260px; box-shadow: var(--shadow-lg);
}
.toast strong { display: block; }
.alert { padding: 10px 12px; border-radius: 8px; margin-bottom: 10px; }
.alert-ok { background: #D1FAE5; color: #065F46; }
.alert-error { background: var(--error-bg); color: #93000a; }
.login-body { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(180deg, #eff4ff, #f8f9ff); }
.login-card { width: min(420px, 92vw); background: #fff; border-radius: 16px; padding: 28px; box-shadow: var(--shadow-lg); }
.brand-block { margin-bottom: 16px; }
.brand-block strong { display: block; font-size: 22px; color: var(--secondary); }
.login-logo { display: block; max-width: 240px; width: 100%; height: auto; margin-bottom: 10px; }
.page-logo { height: 44px; width: auto; display: block; margin-bottom: 8px; }
.report-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.report-tabs a {
  padding: 8px 14px; border-radius: 999px; text-decoration: none;
  background: #fff; color: var(--text-2); font-weight: 600; box-shadow: var(--shadow);
}
.report-tabs a.is-on { background: var(--secondary); color: #fff; }
.guia-card { position: relative; padding-top: 24px; }
.guia-n {
  position: absolute; top: 16px; right: 16px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--secondary); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
}
.guia-list { padding-left: 18px; margin: 8px 0 0; }
.guia-list kbd {
  background: var(--surface-subtle); border: 1px solid var(--border); border-radius: 6px;
  padding: 2px 6px; font-family: var(--mono); font-size: 11px;
}
html.tour-booting::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(15, 23, 42, .5);
  pointer-events: none;
}
.tour-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.tour-overlay.is-on { display: block; }
.tour-overlay.is-leaving .tour-card { opacity: 0; transform: translateY(6px); }
.tour-mask {
  position: fixed;
  z-index: 200;
  background: rgba(15, 23, 42, .55);
  pointer-events: auto;
  transition: top .38s cubic-bezier(.22, 1, .36, 1), left .38s cubic-bezier(.22, 1, .36, 1),
    width .38s cubic-bezier(.22, 1, .36, 1), height .38s cubic-bezier(.22, 1, .36, 1);
}
.tour-spot {
  position: fixed;
  z-index: 201;
  border-radius: 14px;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 3px rgba(64, 89, 170, .55);
  transition: top .38s cubic-bezier(.22, 1, .36, 1), left .38s cubic-bezier(.22, 1, .36, 1),
    width .38s cubic-bezier(.22, 1, .36, 1), height .38s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.tour-spot.is-ready { opacity: 1; }
.tour-card {
  position: fixed;
  z-index: 202;
  pointer-events: auto;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: top .38s cubic-bezier(.22, 1, .36, 1), left .38s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.tour-card.is-ready { opacity: 1; }
.tour-card.is-swap { opacity: 0; }
.tour-card h3 { margin: 4px 0 8px; font-size: 16px; }
.tour-card p { margin: 0 0 12px; color: var(--text-2); }
.tour-step { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); }
.tour-progress {
  height: 3px;
  background: var(--surface-subtle);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 0 10px;
}
.tour-progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 99px;
  transition: width .35s ease;
}
.tour-actions { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.tour-welcome {
  position: fixed;
  right: 20px;
  bottom: 72px;
  z-index: 95;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  animation: tour-pop .35s cubic-bezier(.22, 1, .36, 1);
}
.tour-welcome p { margin: 6px 0 12px; color: var(--text-2); }
@keyframes tour-pop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tour-spot, .tour-card, .tour-mask, .tour-progress > i { transition: none; }
  .tour-welcome { animation: none; }
}
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice {
  border: 1px solid var(--border); background: var(--surface-subtle); border-radius: 12px;
  padding: 14px 8px; text-align: center; cursor: pointer;
}
.choice input { display: none; }
.choice.is-on, .choice:has(input:checked) { background: #DBEAFE; color: var(--canine); border-color: transparent; }
.estado-grid { grid-template-columns: repeat(2, 1fr); }
.estado-grid .choice { display: flex; flex-direction: column; align-items: center; gap: 6px; min-height: 88px; justify-content: center; }
.estado-grid .choice .material-symbols-outlined { font-size: 22px; }
.supply-row, .pago-row { display: flex; align-items: center; gap: 8px; background: var(--surface-subtle); border-radius: 10px; padding: 8px; margin-bottom: 8px; }
.pago-row .pago-metodo { flex: 1.2; }
.pago-row .pago-monto { flex: .8; max-width: 140px; }
.pago-resumen { margin: 0 0 12px; }
.pago-resumen .kpi .num { font-size: 26px; }
.stepper { display: flex; align-items: center; gap: 4px; }
.stepper button { width: 28px; height: 28px; border: 0; border-radius: 6px; background: #fff; cursor: pointer; }
.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 16px; }
.sticky-actions {
  position: sticky; bottom: 12px; background: rgba(255,255,255,.96);
  border-radius: 16px; box-shadow: var(--shadow-lg); padding: 12px 16px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pills button { border: 0; background: var(--surface-subtle); border-radius: 999px; padding: 6px 12px; cursor: pointer; font-weight: 600; color: var(--text-2); }
.pills button.is-on { background: var(--secondary); color: #fff; }
.bar { height: 8px; background: var(--surface-subtle); border-radius: 99px; overflow: hidden; }
.bar > i { display: block; height: 100%; }
.only-mobile { display: none; }
.sidebar-toggle { display: none; }
html.sidebar-collapsed .sidebar-toggle { display: grid; }
.select2-container { width: 100% !important; }

@media (max-width: 1199px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hide-tablet { display: none !important; }
  .span-8, .span-7, .span-5, .span-4 { grid-column: span 12; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .app-shell, .app-main, .content-canvas, .page-section, .card, .page-head, .toolbar {
    max-width: 100%;
    min-width: 0;
  }
  .sidebar { transform: translateX(-105%); }
  html.sidebar-collapsed .sidebar { transform: translateX(-105%); }
  body.sidebar-open .sidebar { transform: none; }
  body.sidebar-open .sidebar-backdrop { display: block; position: fixed; inset: 0; background: rgba(15,23,42,.45); z-index: 45; }
  .sidebar-toggle { display: grid; }
  html.sidebar-collapsed .sidebar-toggle { display: grid; }
  .app-main { margin-left: 0; }
  .content-canvas { padding: 12px; overflow-x: hidden; }
  .grid-4, .grid-3, .grid-2, .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .choice-grid.estado-grid { grid-template-columns: repeat(2, 1fr); }
  h1, .h1 { font-size: 24px; }
  .hide-mobile { display: none !important; }
  .topbar { padding: 0 10px; overflow: hidden; gap: 8px; }
  .topbar-left { flex: 1; min-width: 0; gap: 8px; }
  .topbar-right { flex-shrink: 0; gap: 4px; }
  .live-pill {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .user-chip { gap: 4px; }
  .grid-12 { grid-template-columns: 1fr; }
  .span-8, .span-7, .span-5, .span-4 { grid-column: auto; }
  canvas { max-width: 100% !important; }
  .pago-row, .supply-row { flex-wrap: wrap; min-width: 0; }
  .pago-row .pago-monto { max-width: none; min-width: 0; }
  .sticky-actions { flex-direction: column; }
  .page-head { padding: 16px; }
  .app-footer { flex-direction: column; align-items: flex-start; }
  .tour-welcome { left: 12px; right: 12px; max-width: none; bottom: 16px; }

  .table-wrap { overflow-x: hidden; max-width: 100%; }
  .dataTables_wrapper {
    display: block;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    clear: none;
  }
  .dataTables_wrapper::before,
  .dataTables_wrapper::after {
    display: none !important;
    content: none !important;
  }
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter,
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none !important;
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 0 10px;
  }
  .dataTables_wrapper .dataTables_filter input,
  .dataTables_wrapper .dataTables_length select {
    width: 100%;
    max-width: none;
    margin-left: 0 !important;
  }
  .dataTables_wrapper .dataTables_paginate {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    text-align: center;
  }
  table.data-table,
  table.dataTable {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    clear: none !important;
  }
  table.data-table thead,
  table.dataTable thead {
    display: none;
  }
  table.data-table tbody,
  table.dataTable tbody {
    display: block;
    width: 100%;
  }
  table.data-table tbody tr,
  table.dataTable tbody tr {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
  }
  table.data-table tbody tr:hover,
  table.dataTable tbody tr:hover {
    background: #F8FAFC;
  }
  table.data-table td,
  table.dataTable tbody td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    white-space: normal !important;
    word-break: break-word;
    box-sizing: border-box;
  }
  table.data-table td:last-child,
  table.dataTable tbody td:last-child {
    border-bottom: 0;
  }
  table.data-table td::before,
  table.dataTable tbody td::before {
    content: attr(data-label);
    flex: 0 0 38%;
    max-width: 44%;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-2);
    padding-top: 2px;
    text-align: left;
  }
  table.data-table td[data-label=""]::before,
  table.dataTable tbody td[data-label=""]::before,
  table.data-table td[colspan]::before,
  table.dataTable tbody td[colspan]::before {
    display: none;
  }
  table.data-table td[data-label=""],
  table.dataTable tbody td[data-label=""] {
    justify-content: flex-end;
    padding-top: 10px;
  }
  table.data-table td[colspan],
  table.dataTable tbody td[colspan] {
    justify-content: flex-start;
  }
  table.data-table .actions,
  table.dataTable .actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  table.data-table .mono,
  table.dataTable .mono {
    white-space: normal;
    word-break: break-word;
  }
}
