/* ============================================================
   Liquidador A/B · tema v1.2 "pulse"
   Paleta: púrpura profundo + magenta/naranja + teal (referencia
   dashboard TechPulse). Rail 68px que abre al hover (delay .09s),
   se contrae al elegir, flota sobre el contenido. Grupos del menú
   colapsables. Patrón Good Turn / Zyra / ComHub.
   ============================================================ */
:root {
  --primary: #22e6c8;             /* teal neón: lo interactivo */
  --primary-soft: rgba(34, 230, 200, .13);
  --accent: #ff2d9b;              /* magenta fuego */
  --accent-2: #ff7a3d;            /* naranja del gradiente */
  --violet: #8b5cf6;

  --banco: #6ea8ff;               /* lo que va por banco */
  --banco-bg: rgba(110, 168, 255, .13);
  --efectivo: #2ef5b8;            /* lo que va en mano */
  --efectivo-bg: rgba(46, 245, 184, .11);
  --alerta: #ff4d6d;
  --alerta-bg: rgba(255, 77, 109, .14);
  --warn: #ffb020;
  --warn-bg: rgba(255, 176, 32, .13);

  --bg: #0c0716;
  --surface: #150e26;
  --surface-2: #1e1435;
  --line: #2c1f4d;
  --ink: #f2edff;
  --muted: #9a8fc4;

  --rail-bg: #0a0614;
  --rail-text: #a99ed1;
  --rail-w: 68px;
  --rail-w-open: 254px;

  --glow: 0 0 14px rgba(255, 45, 155, .50), 0 0 36px rgba(255, 45, 155, .20);
  --glow-teal: 0 0 12px rgba(34, 230, 200, .45), 0 0 30px rgba(34, 230, 200, .16);
  --glow-verde: 0 0 12px rgba(46, 245, 184, .40), 0 0 30px rgba(46, 245, 184, .15);
  --grad: linear-gradient(120deg, #ff2d9b, #ff7a3d);
  --grad-marca: linear-gradient(130deg, #ff2d9b, #8b5cf6 55%, #22e6c8);

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .45), 0 8px 28px rgba(0, 0, 0, .40);
  --shadow-pop: 0 14px 44px rgba(0, 0, 0, .60), 0 0 0 1px rgba(255, 45, 155, .10);

  font-family: "Public Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.45;
  color-scheme: dark;
}
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100vh;
  background:
    radial-gradient(1000px 520px at 88% -12%, rgba(255, 45, 155, .13), transparent 60%),
    radial-gradient(900px 500px at -12% 112%, rgba(34, 230, 200, .09), transparent 60%),
    radial-gradient(700px 400px at 50% 120%, rgba(139, 92, 246, .10), transparent 60%),
    var(--bg);
}
a { color: var(--primary); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
::selection { background: rgba(255, 45, 155, .35); }

/* ============================================================
   RAIL LATERAL
   ============================================================ */
.side {
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 100;
  width: var(--rail-w);
  background: linear-gradient(180deg, var(--rail-bg), #0e0820 70%, #120a24);
  border-right: 1px solid var(--line);
  color: var(--rail-text);
  padding: 14px 10px 12px;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 45, 155, .45) transparent;
  transition: width .22s ease, box-shadow .22s ease;
}
.side::-webkit-scrollbar { width: 5px; }
.side::-webkit-scrollbar-track { background: transparent; }
.side::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent), var(--violet)); border-radius: 99px; }
.side:hover:not(.lock) {
  width: var(--rail-w-open);
  transition-delay: .09s;
  box-shadow: var(--shadow-pop);
  border-right-color: rgba(255, 45, 155, .30);
}
/* lo que solo se ve con el rail abierto */
.side .tx, .side .brand small, .side select, .side .user {
  opacity: 0; transform: translateX(-6px); white-space: nowrap;
  transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
}
.side:hover:not(.lock) .tx, .side:hover:not(.lock) .brand small,
.side:hover:not(.lock) select, .side:hover:not(.lock) .user {
  opacity: 1; transform: none; pointer-events: auto;
  transition-delay: .12s;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 800; font-size: 15px;
  margin: 0 0 14px; padding: 2px;
}
.brand::before {
  content: "$"; flex: none;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 19px; font-weight: 800; color: #0c0716;
  background: var(--grad-marca);
  box-shadow: var(--glow);
}
.brand small { display: block; font-weight: 500; color: var(--rail-text); font-size: 11.5px; }
.side select {
  width: 100%; padding: 8px 9px; margin-bottom: 4px;
  border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--surface-2); color: #fff; font: inherit;
}

/* grupos colapsables del menú */
.side details.grupo { margin-top: 6px; }
.side summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 11px; border-radius: var(--radius-sm);
  color: #7a6ca8; font-size: 11px; font-weight: 800; letter-spacing: .9px;
  transition: color .15s, background .15s;
}
.side summary::-webkit-details-marker { display: none; }
.side summary::before {
  content: "▸"; flex: none; width: 12px; text-align: center;
  font-size: 12px; color: var(--accent);
  transition: transform .18s ease;
  text-shadow: 0 0 8px rgba(255, 45, 155, .6);
}
.side details[open] > summary::before { transform: rotate(90deg); }
.side summary:hover { color: #fff; background: rgba(255, 45, 155, .08); }

.side a {
  display: flex; align-items: center; gap: 13px;
  color: var(--rail-text); text-decoration: none;
  padding: 7px 11px; margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.side a .ic { flex: none; width: 26px; text-align: center; font-size: 17px; filter: grayscale(.25); }
.side a:hover { background: rgba(34, 230, 200, .08); color: #fff; }
.side a.on {
  background: rgba(255, 45, 155, .13); color: #fff; font-weight: 700;
  border-color: rgba(255, 45, 155, .40);
  box-shadow: inset 3px 0 0 var(--accent), 0 0 16px rgba(255, 45, 155, .18);
}
.side a.on .ic { filter: none; }
.tema {
  display: flex; align-items: center; gap: 13px; width: 100%;
  margin-top: 12px; padding: 7px 11px;
  font: inherit; font-weight: 700; text-align: left; cursor: pointer;
  color: var(--rail-text); background: transparent;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s, color .15s;
}
.tema .ic { flex: none; width: 26px; text-align: center; font-size: 16px; }
.tema:hover { color: #fff; border-color: var(--accent); box-shadow: 0 0 12px rgba(255, 45, 155, .25); }
.side .user { margin-top: 10px; font-size: 12px; color: #7a6ca8; padding: 0 8px 6px; }
.side .user a { display: inline; padding: 0; margin: 0; border: none; color: var(--rail-text); text-decoration: underline; }

/* el contenido no se mueve: el rail abierto flota encima */
main { margin-left: var(--rail-w); padding: 26px 32px 70px; min-width: 0; }

/* entrada orquestada del contenido (un solo momento, al cargar) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
main > * { animation: fadeUp .35s ease both; }
main > *:nth-child(2) { animation-delay: .05s; }
main > *:nth-child(3) { animation-delay: .10s; }
main > *:nth-child(4) { animation-delay: .15s; }
main > *:nth-child(n+5) { animation-delay: .20s; }

/* ============================================================
   TITULARES Y TARJETAS
   ============================================================ */
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
h1 { font-size: 24px; margin: 0; letter-spacing: -0.01em; color: #fff; }
h1::after {
  content: ""; display: block; width: 64px; height: 3px; margin-top: 7px;
  border-radius: 99px; background: var(--grad);
  box-shadow: var(--glow);
}
h1 .estado {
  font-size: 12px; font-weight: 800; vertical-align: middle; margin-left: 10px;
  padding: 3px 10px; border-radius: 99px;
  background: var(--efectivo-bg); color: var(--efectivo);
  border: 1px solid rgba(46, 245, 184, .40);
  box-shadow: var(--glow-verde);
}
h1 .estado.CERRADO { background: var(--surface-2); color: var(--muted); border-color: var(--line); box-shadow: none; }
h2 { font-size: 16px; margin: 30px 0 10px; color: #fff; }
.sub { color: var(--muted); margin: 4px 0 0; max-width: 70ch; }
.card {
  background: linear-gradient(180deg, var(--surface), #110b20);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.card:hover { border-color: rgba(255, 45, 155, .35); box-shadow: var(--shadow-pop); transform: translateY(-2px); }
.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.help {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 11px 15px; color: var(--muted); margin: 0 0 16px; max-width: 90ch;
}

/* ============================================================
   BOTONES Y FORMULARIOS
   ============================================================ */
.btn {
  display: inline-block; font: inherit; font-weight: 800;
  padding: 9px 16px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  background: var(--grad); color: #14060f;
  transition: box-shadow .18s, transform .12s, filter .18s;
}
.btn:hover { box-shadow: var(--glow); transform: translateY(-1px); filter: saturate(1.15); }
.btn:active { transform: none; }
.btn.sec { background: var(--surface-2); color: var(--ink); border-color: var(--line); }
.btn.sec:hover { border-color: var(--primary); box-shadow: var(--glow-teal); }
.btn.peligro { background: transparent; color: var(--alerta); border-color: rgba(255, 77, 109, .5); }
.btn.peligro:hover { box-shadow: 0 0 12px rgba(255, 77, 109, .35); background: var(--alerta-bg); }
.btn.chico { padding: 3px 10px; font-size: 12px; font-weight: 700; }
form.inline { display: inline; }
label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
input, select, textarea {
  font: inherit; padding: 8px 10px; width: 100%;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); outline: none; }
input::placeholder, textarea::placeholder { color: #6d5f9d; }
textarea { min-height: 70px; }
.campos { display: grid; gap: 12px 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.acciones { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filtros { display: flex; gap: 8px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 12px; }
.filtros > div { min-width: 160px; }

/* ============================================================
   MENSAJES
   ============================================================ */
.flash { padding: 11px 15px; border-radius: var(--radius-sm); margin-bottom: 14px; border: 1px solid; animation: fadeUp .3s ease both; }
.flash.ok { background: var(--efectivo-bg); color: var(--efectivo); border-color: rgba(46, 245, 184, .40); box-shadow: var(--glow-verde); }
.flash.error { background: var(--alerta-bg); color: #ff90a5; border-color: rgba(255, 77, 109, .45); box-shadow: 0 0 14px rgba(255, 77, 109, .18); }

/* ============================================================
   TABLAS
   ============================================================ */
.tabla-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
table { border-collapse: collapse; width: 100%; font-size: 13px; }
th, td { padding: 7px 11px; border-bottom: 1px solid #1c1336; text-align: left; white-space: nowrap; }
th { font-size: 11.5px; font-weight: 800; letter-spacing: .4px; color: var(--muted); background: var(--surface-2); position: sticky; top: 0; z-index: 1; }
td.n, th.n { text-align: right; font-variant-numeric: tabular-nums; }
tr:hover td { background: rgba(255, 45, 155, .05); }
tfoot td { font-weight: 800; border-top: 2px solid var(--accent); background: var(--surface-2); color: #fff; }
tr.neg td { background: rgba(255, 77, 109, .09); }
th.col-banco { color: var(--banco); box-shadow: inset 0 -3px 0 var(--banco); }
th.col-efectivo { color: var(--efectivo); box-shadow: inset 0 -3px 0 var(--efectivo); }
td.banco { color: var(--banco); font-weight: 600; }
td.efectivo { color: var(--efectivo); font-weight: 800; text-shadow: 0 0 10px rgba(46, 245, 184, .35); }
td.efectivo.neg { color: var(--alerta); text-shadow: 0 0 10px rgba(255, 77, 109, .35); }

.tag { display: inline-block; font-size: 11px; font-weight: 800; padding: 2px 9px; border-radius: 99px; background: var(--surface-2); color: var(--muted); border: 1px solid var(--line); }
.tag.SIGMA { background: rgba(139, 92, 246, .16); color: #c3a8ff; border-color: rgba(139, 92, 246, .45); }
.tag.YAM { background: var(--primary-soft); color: var(--primary); border-color: rgba(34, 230, 200, .45); }
.tag.ESTUDIO { background: var(--banco-bg); color: var(--banco); border-color: rgba(110, 168, 255, .45); }
.tag.PLANILLA, .tag.MANUAL, .tag.TEXTO { background: var(--warn-bg); color: var(--warn); border-color: rgba(255, 176, 32, .45); }
.tag.TRASLADO { background: var(--alerta-bg); color: var(--alerta); border-color: rgba(255, 77, 109, .45); }

/* ============================================================
   BANCO / EFECTIVO: la pieza que se repite en toda la app
   ============================================================ */
.split { display: flex; height: 10px; border-radius: 99px; overflow: hidden; background: var(--surface-2); margin: 10px 0 6px; border: 1px solid var(--line); }
.split .b { background: linear-gradient(90deg, #3f7fe8, var(--banco)); box-shadow: 0 0 10px rgba(110, 168, 255, .55); }
.split .e { background: linear-gradient(90deg, #14c98f, var(--efectivo)); box-shadow: 0 0 10px rgba(46, 245, 184, .55); }
.cifras { display: flex; gap: 28px; flex-wrap: wrap; }
.cifra .v { font-size: 27px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; color: #fff; }
.cifra .l { font-size: 12px; color: var(--muted); }
.cifra.b .v { color: var(--banco); text-shadow: 0 0 14px rgba(110, 168, 255, .50); }
.cifra.e .v { color: var(--efectivo); text-shadow: 0 0 14px rgba(46, 245, 184, .50); }

/* ============================================================
   PASOS DEL PERÍODO
   ============================================================ */
.pasos { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.paso { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .18s, box-shadow .18s; }
.paso:hover { border-color: rgba(255, 45, 155, .35); }
.paso .t { font-weight: 700; color: #fff; }
.paso .s { color: var(--muted); font-size: 12px; }
.paso.listo { border-color: rgba(46, 245, 184, .45); box-shadow: inset 3px 0 0 var(--efectivo), 0 0 14px rgba(46, 245, 184, .12); }
.paso.falta { box-shadow: inset 3px 0 0 var(--warn); }

/* ============================================================
   TABS
   ============================================================ */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tabs a { padding: 6px 13px; border-radius: 99px; text-decoration: none; color: var(--ink); border: 1px solid var(--line); background: var(--surface); font-size: 13px; transition: border-color .15s, box-shadow .15s; }
.tabs a:hover { border-color: var(--accent); }
.tabs a.on { background: var(--grad); color: #14060f; border-color: transparent; font-weight: 800; box-shadow: var(--glow); }
.tabs a .c { color: var(--muted); font-size: 11px; margin-left: 4px; }
.tabs a.on .c { color: rgba(20, 6, 15, .7); }

/* ============================================================
   ALERTAS (Controles)
   ============================================================ */
.alerta { display: flex; gap: 10px; padding: 9px 13px; border-bottom: 1px solid #1c1336; align-items: baseline; }
.alerta .nv { font-size: 11px; font-weight: 800; width: 48px; flex: none; letter-spacing: .5px; }
.alerta.alta .nv { color: var(--alerta); text-shadow: 0 0 10px rgba(255, 77, 109, .55); }
.alerta.media .nv { color: var(--warn); }
.alerta.baja .nv { color: var(--muted); }

/* ============================================================
   SWITCHES
   ============================================================ */
.switch-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid #1c1336; }
.sw { width: 48px; height: 27px; border-radius: 99px; border: 1px solid var(--line); background: var(--surface-2); position: relative; cursor: pointer; flex: none; transition: background .18s, box-shadow .18s; }
.sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #9a8fc4; transition: left .15s, background .15s; }
.sw.on { background: rgba(46, 245, 184, .25); border-color: rgba(46, 245, 184, .5); box-shadow: var(--glow-verde); }
.sw.on::after { left: 24px; background: var(--efectivo); }

/* ============================================================
   LOGIN
   ============================================================ */
body.login { display: flex; align-items: center; justify-content: center; }
.login-box {
  width: 360px; padding: 34px 32px;
  background: linear-gradient(180deg, var(--surface), #110b20);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  animation: fadeUp .4s ease both;
}
.login-box h1 { margin-bottom: 4px; }

/* ============================================================
   MANUALES (módulo Docs)
   ============================================================ */
.doc { max-width: 880px; }
.doc .card { margin-bottom: 16px; }
.doc h2 { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
.doc h2 .nro {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; font-size: 14px; font-weight: 800; color: #14060f;
  background: var(--grad); box-shadow: var(--glow);
}
.doc ol, .doc ul { margin: 8px 0; padding-left: 22px; color: var(--ink); }
.doc li { margin: 5px 0; }
.doc li strong, .doc p strong { color: #fff; }
.doc code, .doc pre {
  background: #0d0819; border: 1px solid var(--line); border-radius: 7px;
  color: var(--primary); font-size: 12.5px;
}
.doc code { padding: 2px 7px; }
.doc pre { padding: 12px 14px; overflow-x: auto; color: var(--ink); }
.doc pre code { border: none; background: none; padding: 0; }
.doc table { font-size: 13px; }
.doc td, .doc th { white-space: normal; }

/* ============================================================
   RESPONSIVE: en móvil el rail es barra inferior
   ============================================================ */
@media (max-width: 860px) {
  .side {
    top: auto; bottom: 0; right: 0; left: 0; width: 100%; height: 62px;
    display: flex; align-items: center; gap: 2px;
    padding: 6px 8px; overflow-x: auto; overflow-y: hidden;
    border-right: none; border-top: 1px solid var(--line);
    transition: none;
  }
  .side:hover:not(.lock) { width: 100%; box-shadow: none; }
  .brand, .side select, .side .user, .side .tx, .side summary { display: none; }
  .side details.grupo { margin: 0; display: contents; }
  .side details.grupo:not([open]) a { display: flex; } /* en móvil se ven todos los íconos */
  .side a { flex: none; padding: 10px 12px; }
  main { margin-left: 0; padding: 18px 14px 90px; }
}
@media (prefers-reduced-motion: reduce) {
  main > *, .flash, .login-box { animation: none; }
  .side, .side .tx, .card, .btn, .sw::after, .side summary::before { transition: none; }
}


/* ============================================================
   MODO CLARO (beige) — se activa con data-theme="claro" en <html>
   ============================================================ */
:root[data-theme="claro"] {
  --primary: #0fa38f;
  --primary-soft: rgba(15, 163, 143, .14);
  --accent: #e0187f;
  --accent-2: #f26a1b;
  --violet: #7c4ddc;

  --banco: #2f6fe0;
  --banco-bg: rgba(47, 111, 224, .12);
  --efectivo: #0e9a6e;
  --efectivo-bg: rgba(14, 154, 110, .12);
  --alerta: #d13b52;
  --alerta-bg: rgba(209, 59, 82, .12);
  --warn: #b0721a;
  --warn-bg: rgba(176, 114, 26, .13);

  --bg: #f3efe6;
  --surface: #fbf8f1;
  --surface-2: #f0eadd;
  --line: #ddd4c2;
  --ink: #2a2438;
  --muted: #6f6787;

  --rail-bg: #efe9db;
  --rail-text: #5d5478;

  --glow: 0 0 10px rgba(224, 24, 127, .30), 0 0 24px rgba(224, 24, 127, .12);
  --glow-teal: 0 0 10px rgba(15, 163, 143, .30), 0 0 22px rgba(15, 163, 143, .12);
  --glow-verde: 0 0 10px rgba(14, 154, 110, .28), 0 0 22px rgba(14, 154, 110, .12);
  --shadow: 0 1px 3px rgba(74, 60, 40, .10), 0 8px 24px rgba(74, 60, 40, .10);
  --shadow-pop: 0 14px 40px rgba(74, 60, 40, .16), 0 0 0 1px rgba(224, 24, 127, .10);

  color-scheme: light;
}
:root[data-theme="claro"] body {
  background:
    radial-gradient(1000px 520px at 88% -12%, rgba(224, 24, 127, .07), transparent 60%),
    radial-gradient(900px 500px at -12% 112%, rgba(15, 163, 143, .07), transparent 60%),
    var(--bg);
}
:root[data-theme="claro"] .side {
  background: linear-gradient(180deg, var(--rail-bg), #ece4d2 70%, #efe7d6);
}
:root[data-theme="claro"] .brand { color: var(--ink); }
:root[data-theme="claro"] .brand::before { color: #fff; }
:root[data-theme="claro"] .side select { color: var(--ink); }
:root[data-theme="claro"] .side summary { color: #8a7f6a; }
:root[data-theme="claro"] .side summary:hover,
:root[data-theme="claro"] .side a:hover,
:root[data-theme="claro"] .tema:hover { color: var(--ink); }
:root[data-theme="claro"] .side a.on { color: var(--ink); }
:root[data-theme="claro"] .side .user { color: #8a7f6a; }
:root[data-theme="claro"] h1, :root[data-theme="claro"] h2,
:root[data-theme="claro"] .paso .t, :root[data-theme="claro"] .cifra .v,
:root[data-theme="claro"] .doc li strong, :root[data-theme="claro"] .doc p strong { color: var(--ink); }
:root[data-theme="claro"] .card { background: linear-gradient(180deg, var(--surface), #f6f1e6); }
:root[data-theme="claro"] .login-box { background: linear-gradient(180deg, var(--surface), #f6f1e6); }
:root[data-theme="claro"] th, :root[data-theme="claro"] td { border-bottom-color: #e7dfcd; }
:root[data-theme="claro"] tfoot td { color: var(--ink); }
:root[data-theme="claro"] tr:hover td { background: rgba(224, 24, 127, .05); }
:root[data-theme="claro"] .alerta { border-bottom-color: #e7dfcd; }
:root[data-theme="claro"] .switch-row { border-bottom-color: #e7dfcd; }
:root[data-theme="claro"] td.efectivo, :root[data-theme="claro"] .cifra.e .v,
:root[data-theme="claro"] td.efectivo.neg, :root[data-theme="claro"] .cifra.b .v,
:root[data-theme="claro"] .alerta.alta .nv { text-shadow: none; }
:root[data-theme="claro"] .doc code, :root[data-theme="claro"] .doc pre { background: #efe9db; color: #0d7a6b; }
:root[data-theme="claro"] .doc pre { color: var(--ink); }
:root[data-theme="claro"] input::placeholder, :root[data-theme="claro"] textarea::placeholder { color: #9a90ae; }
