/* CSS للطباعة الحرارية - ليبلات المنتجات */

/* إعدادات الطباعة الحرارية */
@media print {
  @page {
    size: 4in 6in;
    margin: 0.1in;
  }
  
  body {
    font-family: 'Courier New', monospace !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: black !important;
    background: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  * {
    box-sizing: border-box !important;
  }
}

/* تنسيق الليبل الحراري */
.thermal-label {
  width: 4in;
  min-height: 6in;
  max-width: 4in;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  line-height: 1.2;
  color: black;
  background: white;
  border: 1px solid #333;
  box-sizing: border-box;
  page-break-after: always;
  overflow: hidden;
}

/* رأس الليبل */
.thermal-label .label-header {
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 4px;
  margin-bottom: 8px;
  font-weight: bold;
}

/* أقسام الليبل */
.thermal-label .label-section {
  margin-bottom: 8px;
  border-bottom: 1px solid #666;
  padding-bottom: 4px;
}

.thermal-label .label-section:last-child {
  border-bottom: none;
}

/* عناوين الأقسام */
.thermal-label .label-title {
  font-weight: bold;
  font-size: 9px;
  margin-bottom: 2px;
  text-decoration: underline;
}

/* محتوى الأقسام */
.thermal-label .label-content {
  font-size: 8px;
  line-height: 1.1;
}

/* شبكة المعلومات */
.thermal-label .label-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 2px;
}

/* ذيل الليبل */
.thermal-label .label-footer {
  text-align: center;
  margin-top: 8px;
  padding-top: 4px;
  border-top: 1px solid #666;
  font-size: 8px;
}

/* تحسينات للطباعة */
@media print {
  .thermal-label {
    width: 4in !important;
    min-height: 6in !important;
    max-width: 4in !important;
    padding: 8px !important;
    margin: 0 !important;
    border: 1px solid #000 !important;
    page-break-inside: avoid !important;
    page-break-after: always !important;
  }
  
  .thermal-label .label-header {
    border-bottom: 2px solid #000 !important;
  }
  
  .thermal-label .label-section {
    border-bottom: 1px solid #333 !important;
  }
  
  .thermal-label .label-footer {
    border-top: 1px solid #333 !important;
  }
  
  /* إخفاء العناصر غير المطلوبة في الطباعة */
  .no-print {
    display: none !important;
  }
}

/* تحسينات للشاشة */
@media screen {
  .thermal-label {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
  }
}

/* تنسيق خاص للنص العربي */
.thermal-label {
  direction: rtl;
  text-align: center;
}

.thermal-label .label-header {
  direction: ltr;
  text-align: center;
}

.thermal-label .label-footer {
  direction: ltr;
  text-align: center;
}

/* توسيط جميع النصوص */
.thermal-label .label-content {
  text-align: center;
}

.thermal-label .label-grid {
  text-align: center;
}

/* تحسين الخطوط للطباعة الحرارية */
.thermal-label {
  font-weight: normal;
  letter-spacing: 0.5px;
}

.thermal-label .label-title {
  font-weight: bold;
  letter-spacing: 0.3px;
}

/* تحسين المسافات */
.thermal-label div {
  margin-bottom: 1px;
}

.thermal-label .label-grid div {
  margin-bottom: 0;
  padding: 1px 0;
}

/* تحسين الحدود للطباعة الحرارية */
@media print {
  .thermal-label * {
    border-color: #000 !important;
  }
  
  .thermal-label .label-section {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
  }
  
  .thermal-label .label-header {
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
  }
  
  .thermal-label .label-footer {
    border-top-width: 1px !important;
    border-top-style: solid !important;
  }
}

/* تحسين للطابعات الحرارية منخفضة الدقة */
@media print and (max-resolution: 203dpi) {
  .thermal-label {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
  
  .thermal-label .label-content {
    font-size: 9px !important;
  }
  
  .thermal-label .label-title {
    font-size: 10px !important;
  }
}

/* تحسين للطابعات الحرارية عالية الدقة */
@media print and (min-resolution: 300dpi) {
  .thermal-label {
    font-size: 9px !important;
    line-height: 1.1 !important;
  }
  
  .thermal-label .label-content {
    font-size: 7px !important;
  }
  
  .thermal-label .label-title {
    font-size: 8px !important;
  }
}
