/* ============================================================
   DraftWise India – print.css
   Print-specific styles – only the draft content is printed
   ============================================================ */
@media print {
  .navbar-dw, .hero-section, .steps-bar, .info-panel,
  .form-section, .preview-toolbar, .download-bar,
  .footer-dw, .disclaimer-banner, #validationErrors,
  #readinessPanel, .btn, .ad-slot, nav, footer, header { display: none !important; }

  body { font-family: 'Georgia', serif; color: #000; background: #fff; font-size: 11pt; }

  .draft-preview-wrapper {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  pre.draft-text {
    font-family: 'Georgia', serif;
    font-size: 11pt;
    line-height: 1.8;
    white-space: pre-wrap;
    color: #000;
  }

  .print-header {
    display: block !important;
    text-align: center;
    margin-bottom: 2cm;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5cm;
  }

  .print-footer {
    display: block !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 8pt;
    color: #666;
    border-top: 1px solid #999;
    padding-top: 0.3cm;
    text-align: center;
  }

  @page {
    margin: 2cm;
    size: A4;
  }

  .page-break { page-break-before: always; }
}

.print-header, .print-footer { display: none; }
