@tailwind base;
@tailwind components;
@tailwind utilities;

@media print {
  /* Hide everything by default */
  body * {
    visibility: hidden;
  }

  /* Show only the NDA document */
  #nda-document,
  #nda-document * {
    visibility: visible;
  }

  #nda-document {
    position: fixed;
    inset: 0;
    max-height: none !important;
    overflow: visible !important;
    border: none !important;
    border-radius: 0 !important;
    background: white !important;
    padding: 0.75in !important;
    font-family: 'Times New Roman', Times, Georgia, serif !important;
    font-size: 11pt !important;
    line-height: 1.6 !important;
    color: #000 !important;
    white-space: pre-wrap;
  }
}
