* { box-sizing: border-box; }
body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  margin: 0;
  padding: 16px;
  padding-bottom: 70px;
}

.contenedor {
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  body { padding: 28px; padding-bottom: 90px; }
  .stat-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .partidos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .partidos-grid .jornada-box { margin-bottom: 0; }
  nav.tabbar {
    max-width: 720px;
    margin: 0 auto;
    right: 0;
    left: 0;
    border-radius: 16px 16px 0 0;
    border-left: 1px solid #262626;
    border-right: 1px solid #262626;
  }
}

h1 { font-size: 20px; margin-bottom: 4px; }
h2 { font-size: 15px; color: #a3a3a3; margin: 24px 0 10px; }
.subtitulo { color: #888; font-size: 13px; margin-bottom: 20px; }

.card {
  background: #171717;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}
.card .label { color: #888; font-size: 13px; }
.card .monto { color: #34d399; font-size: 26px; font-weight: bold; }
.card .monto.amber { color: #fbbf24; }

form.captura {
  background: #171717;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}
form.captura input, form.captura select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0a0a0a;
  color: #e5e5e5;
  font-size: 15px;
}
form.captura input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #34d399;
}
form.captura .ayuda { color: #666; font-size: 11px; margin-top: -6px; }
form.captura button {
  background: #34d399;
  color: #0a0a0a;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
}

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 8px 6px; border-bottom: 1px solid #262626; }
th { color: #888; font-weight: normal; }
.pagado { color: #555; text-decoration: line-through; }

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}
.badge-pendiente { background: #3f3f46; color: #d4d4d8; }
.badge-parcial { background: rgba(251,191,36,.15); color: #fbbf24; }
.badge-pagado { background: rgba(52,211,153,.15); color: #34d399; }

.btn-toggle {
  color: #34d399;
  text-decoration: none;
  font-size: 12px;
  background: rgba(52,211,153,.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.grupo-cliente {
  background: #171717;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}
.grupo-cliente .titulo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 8px;
}
.jornada-box {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.jornada-box .fila-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partido {
  font-size: 12px;
  color: #a3a3a3;
  margin-top: 6px;
  padding-left: 10px;
  border-left: 2px solid #262626;
}
.partido .cat { color: #737373; }

nav.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #171717;
  border-top: 1px solid #262626;
  display: flex;
  overflow-x: auto;
}
nav.tabbar a {
  flex: 1 0 auto;
  min-width: 64px;
  text-align: center;
  padding: 14px 4px;
  color: #888;
  text-decoration: none;
  font-size: 11px;
  white-space: nowrap;
  -webkit-tap-highlight-color: rgba(52,211,153,.25);
}
nav.tabbar a.activo { color: #34d399; font-weight: bold; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.checkbox-grid input { width: auto; }

@media (min-width: 700px) {
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
}

.total-preview {
  background: rgba(52,211,153,.1);
  color: #34d399;
  border-radius: 8px;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}

select.estado-inline {
  background: #0a0a0a;
  color: #e5e5e5;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 12px;
}

.btn-pequeno {
  display: inline-block;
  background: #262626;
  color: #d4d4d8;
  text-decoration: none;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
}
.btn-rojo { background: rgba(248,113,113,.12); color: #f87171; }
.btn-verde { background: rgba(52,211,153,.12); color: #34d399; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.stat-box {
  background: #171717;
  border-radius: 12px;
  padding: 12px;
}
.stat-box .n { font-size: 22px; font-weight: bold; }
.stat-box .l { font-size: 12px; color: #888; }

.top-actions { display:flex; justify-content: space-between; align-items:center; margin-bottom: 16px; }
.top-actions a.boton {
  background: #34d399; color:#0a0a0a; text-decoration:none;
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight:bold;
}
.logout-link { color: #666; font-size: 12px; text-decoration: none; }

.liga-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.liga-blitz { background: rgba(96,165,250,.15); color: #60a5fa; }
.liga-yarda20 { background: rgba(52,211,153,.15); color: #34d399; }

.stage-card {
  background: #171717;
  border-radius: 14px;
  padding: 14px;
}
.stage-card .n { font-size: 26px; font-weight: bold; }
.stage-card .l { font-size: 12px; color: #888; margin-bottom: 8px; }
.stage-card .desglose { display: flex; flex-wrap: wrap; gap: 5px; }
.stage-card .desglose span {
  font-size: 11px;
  background: #0a0a0a;
  color: #a3a3a3;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #262626;
}

.jornada-box {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  transition: border-color .15s;
}
.jornada-box:hover { border-color: #333; }

.jornada-header {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 22px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1f1f1f;
}

.monto-pagado { color: #34d399 !important; }
.monto-pendiente { color: #fbbf24 !important; }
.jornada-box.pagado-ok { border-left: 3px solid #34d399; background: rgba(52,211,153,.04); }
.jornada-box.pendiente-ok { border-left: 3px solid #fbbf24; }

.semana-card {
  background: #171717;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}
.semana-liga-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #262626;
}
.semana-liga-row:first-of-type { border-top: none; }

.checklist-cats { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.cat-chip {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #262626;
  color: #d4d4d8;
  text-decoration: none;
  border: 1px solid #333;
}
.cat-chip.cat-hecha {
  background: rgba(52,211,153,.12);
  color: #34d399;
  border-color: rgba(52,211,153,.3);
}