/* Print styles for quotation PDF generation */

@media print {
  body { background: white; }
  #app, #sidebar, #header { display: none !important; }
  .no-print { display: none !important; }

  .print-page {
    width: 210mm;
    min-height: 297mm;
    padding: 15mm 18mm;
    margin: 0 auto;
    background: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 10pt;
    color: #000;
  }

  .print-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8mm;
    padding-bottom: 4mm;
    border-bottom: 2px solid #E40006;
  }

  .print-company-name {
    font-size: 18pt;
    font-weight: 700;
    color: #E40006;
    letter-spacing: -0.5pt;
  }

  .print-quotation-box {
    text-align: right;
  }

  .print-q-number {
    font-size: 14pt;
    font-weight: 700;
    color: #0A0F1E;
  }

  .print-section-title {
    font-size: 9pt;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5pt;
    color: #E40006;
    background: #FFF0F0;
    padding: 3pt 6pt;
    margin: 4mm 0 2mm;
  }

  .print-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9pt;
    margin-bottom: 4mm;
  }

  .print-table th {
    background: #F3F2EF;
    padding: 4pt 6pt;
    text-align: left;
    font-weight: 600;
    border: 0.5pt solid #E5E4E1;
    font-size: 8pt;
  }

  .print-table td {
    padding: 4pt 6pt;
    border: 0.5pt solid #E5E4E1;
    vertical-align: top;
  }

  .print-totals {
    margin-top: 4mm;
    text-align: right;
  }

  .print-total-row {
    display: flex;
    justify-content: flex-end;
    gap: 8mm;
    padding: 2pt 0;
  }

  .print-total-label { color: #4B5563; }
  .print-grand-total { font-size: 13pt; font-weight: 700; color: #E40006; }
  .print-footer { margin-top: 8mm; font-size: 8pt; color: #9CA3AF; }
}
