/* iPhone/iPad Safari print hotfix — keeps the CAIXA report on one A4 page.
   The base stylesheet moves the footer down with transform: translateY(30mm),
   which WebKit paginates onto a second sheet. Keep desktop behavior unchanged. */
@media print {
  @supports (-webkit-touch-callout: none) {
    body.fc-caixa-page #caixaPrintReport.fc-caixa-print-report {
      height: 243mm !important;
      min-height: 243mm !important;
      overflow: visible !important;
      break-after: avoid-page !important;
      page-break-after: avoid !important;
    }

    body.fc-caixa-page #caixaPrintReport.fc-caixa-print-report > footer {
      bottom: -30mm !important;
      transform: none !important;
      page-break-inside: avoid !important;
      break-inside: avoid-page !important;
    }
  }
}
