/* ======================================
   DAH PHONES - أنماط الطباعة
   ====================================== */

@media print {
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: white !important;
    color: #000 !important;
    font-family: 'Inter', 'Tajawal', 'Cairo', Arial, sans-serif;
    font-size: 12px;
    direction: rtl;
  }

  #sidebar, #topbar, .no-print, .btn, .modal-footer { display: none !important; }

  #main-content { margin: 0 !important; }
  #page-content { padding: 0 !important; }

  .receipt {
    background: white;
    color: black;
    max-width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 11px;
  }

  .receipt-header { text-align: center; border-bottom: 2px dashed #000; padding-bottom: 8px; margin-bottom: 8px; }
  .receipt-logo { font-size: 18px; font-weight: 900; }
  .receipt-items { width: 100%; border-collapse: collapse; }
  .receipt-items th, .receipt-items td { padding: 3px 4px; }
  .receipt-items th { border-bottom: 1px solid #000; font-weight: 700; text-align: right; }
  .receipt-total { border-top: 2px dashed #000; padding-top: 6px; margin-top: 6px; }

  .report-print { padding: 15px; }
  .report-title { font-size: 16px; font-weight: 900; text-align: center; margin-bottom: 15px; }

  table thead th {
    background: #f5f5f5 !important;
    color: #333 !important;
    border: 1px solid #ddd;
    padding: 6px 8px;
    font-size: 11px;
  }

  table tbody td {
    border: 1px solid #eee;
    padding: 5px 8px;
    color: #000 !important;
    font-size: 11px;
  }

  table tbody tr:nth-child(even) { background: #f9f9f9 !important; }

  @page {
    size: A4;
    margin: 15mm;
  }

  .page-break { page-break-before: always; }
  .no-break { page-break-inside: avoid; }
}

/* طباعة الإيصال الحراري (80mm) */
@media print and (max-width: 80mm) {
  @page { size: 80mm auto; margin: 3mm; }
  .receipt { font-size: 10px; padding: 5px; }
}
