/* pdf.css */

/* Hide .pdf-only on screen */
@media screen {
  .pdf-only {
    visibility: hidden;
    position: absolute;
    top: -9999px;
    left: -9999px;
    height: 0;
    overflow: hidden;
  }
}

/* Print styles */
@media print {
  .pdf-only {
    display: block !important;
    visibility: visible !important;
  }

  .pdf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background: #fff;
    z-index: 1000;
  }

  .pdf-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ccc;
    background: #fff;
    font-size: 12px;
    z-index: 1000;
  }

  .pdf-content {
    margin-top: 120px;
    margin-bottom: 80px;
    padding: 0 20px;
  }
}