/* Sunds-mallens tryckvänliga utseende (A4 landscape).
   Kompletterar Tailwind — bara det Tailwind inte täcker bra. */

html { scroll-behavior: smooth; }
html { scroll-padding-top: 5rem; }

/* Tabellen i kontoplan-sektionen: tabular siffror, kompakt */
#konto-tbody td {
  font-variant-numeric: tabular-nums;
  border-top: 1px solid #f5f5f4;
}
#konto-tbody tr:hover {
  background: #fafaf9;
}

/* Status-badges */
.badge-bekraftad {
  background: #d1fae5;
  color: #065f46;
}
.badge-behover-pia {
  background: #fef3c7;
  color: #92400e;
}

/* Kategori-stats-kort */
.kat-card {
  background: white;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 0.75rem;
}
.kat-card .kat-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #78716c;
}
.kat-card .kat-num {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Print — tryckvänlig version som matchar mallens A4 landscape */
@media print {
  body { background: white; }
  header { position: static; box-shadow: none; }
  nav { display: none; }
  main { max-width: none; padding: 0; }
  section { page-break-inside: avoid; }
  .print\\:hidden { display: none !important; }
  a { color: black; text-decoration: none; }
}
