/**
 * Print
 * Print-specific styles for A4 page layout.
 */

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  html,
  body {
    width: 210mm;
    height: 297mm;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 12pt;
    line-height: 1.5;
    background-color: white;
    color: #000;
    visibility: hidden;
  }

  .print-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20mm;
    box-sizing: border-box;
    visibility: visible;
  }

  .header {
    position: absolute;
    top: 20mm;
    left: 20mm;
    right: 20mm;
    text-align: left;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
  }

  .content {
    position: absolute;
    top: 60mm;
    left: 20mm;
    right: 20mm;
    bottom: 60mm;
  }

  .footer {
    position: absolute;
    bottom: 20mm;
    left: 20mm;
    right: 20mm;
    text-align: center;
    border-top: 1px solid #000;
    padding-top: 10px;
    font-size: 10pt;
  }
}
