/* ========================================================
   منظومة تحرير وطباعة الشهادات المدرسية - التنسيقات العصرية
   ======================================================== */

:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --accent-color: #059669;
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
}

/* التبويبات النشطة */
.nav-btn.active-tab {
  background-color: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* شريط التمرير الأنيق */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* منطقة السحب والإفلات عند السحب النشط */
.drag-active {
  border-color: #2563eb !important;
  background-color: #eff6ff !important;
  transform: scale(1.01);
}

/* جدول البيانات - تأثير المرور */
tbody tr {
  transition: all 0.15s ease-in-out;
}
tbody tr:hover {
  background-color: #f8fafc;
}

/* ========================================================
   معاينة الشهادة على الشاشة (Screen Preview)
   تحاكي ورقة A4 Landscape (297mm × 210mm) تماماً كما ستطبع
   ======================================================== */

.preview-zoom-wrapper {
  max-width: 100%;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* محاكاة ورقة A4 Landscape على الشاشة */
.a4-landscape-sheet {
  width: 297mm;
  height: 210mm;
  max-width: 100%;
  background: white;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 8mm 6mm;
  margin: 0 auto;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.15), 0 2px 6px -1px rgba(0, 0, 0, 0.1);
  page-break-after: always;
  break-after: page;
  position: relative;
  overflow: hidden;
}

/* الفاصل بين الشهادتين في الورقة */
.cert-half {
  flex: 1;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding: 6mm 10mm;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* خطوط الشهادة المتنوعة */
.font-amiri, .font-amiri * { font-family: 'Amiri', serif !important; }
.font-aref, .font-aref * { font-family: 'Aref Ruqaa', serif !important; }
.font-naskh, .font-naskh * { font-family: 'Noto Naskh Arabic', serif !important; }
.font-cairo, .font-cairo * { font-family: 'Cairo', sans-serif !important; }
.font-tajawal, .font-tajawal * { font-family: 'Tajawal', sans-serif !important; }
.font-scheherazade, .font-scheherazade * { font-family: 'Scheherazade New', serif !important; }
.font-alexandria, .font-alexandria * { font-family: 'Alexandria', sans-serif !important; }

/* أنماط الإطار */
/* النمط 1: الأصلي كما في الصورة */
.border-original .cert-half:first-child {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}
.border-original .cert-half:last-child {
  border-left: 2px solid #000;
}

/* النمط 2: إطار إداري مزدوج كلاسيكي أنيق */
.border-double .cert-half-inner {
  border: 3.5px double #000;
  border-radius: 6px;
  padding: 5mm 6mm;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* النمط 3: إطار ملكي ذو زوايا فخمة */
.border-royal .cert-half-inner {
  border: 1.5px solid #000;
  outline: 2px solid #000;
  outline-offset: -5px;
  padding: 6mm 7mm;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
}

/* بطاقة الشهادة ومكوناتها الداخلية */
.cert-header {
  margin-bottom: 6px;
  line-height: 1.4;
}

.cert-header-center {
  text-align: center;
}

.cert-header-right {
  text-align: right;
  margin-top: 5px;
  line-height: 1.45;
}

.cert-country {
  font-size: 15pt;
  font-weight: 700;
  color: #000;
  border-bottom: 1.5px solid #000;
  display: inline-block;
  padding-bottom: 1px;
}

.cert-ministry {
  font-size: 12pt;
  font-weight: 700;
  color: #000;
  margin-top: 3px;
}

/* مديرية التربية والمؤسسة على اليمين كما في نموذج الصورة */
.cert-directorate {
  font-size: 11.5pt;
  font-weight: 700;
  color: #000;
  text-align: right;
}

.cert-school {
  font-size: 11.5pt;
  font-weight: 700;
  color: #000;
  text-align: right;
}

.cert-title-container {
  text-align: center;
  margin: 6px 0 10px 0;
}

.cert-title {
  font-size: 26pt;
  font-weight: 700;
  border-bottom: 2.5px solid #000;
  padding-bottom: 2px;
  letter-spacing: 2px;
  color: #000;
  display: inline-block;
}

.cert-body {
  font-family: 'Amiri', 'Cairo', serif;
  font-size: 13.5pt;
  color: #000;
  line-height: 1.8;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3px;
}

.cert-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}

.cert-label {
  font-weight: 700;
  white-space: nowrap;
}

.cert-value {
  font-weight: 700;
  font-family: 'Amiri', 'Cairo', serif;
}

.cert-statement {
  text-align: center;
  font-size: 14pt;
  font-weight: 700;
  margin: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cert-footer {
  margin-top: auto;
  font-family: 'Amiri', 'Cairo', serif;
  padding-top: 4px;
}

.cert-footer-date {
  font-size: 12.5pt;
  font-weight: 700;
  margin-bottom: 8px;
}

.cert-footer-signer {
  text-align: center;
  font-size: 15pt;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 2px;
}

/* العلامة المائية الاختيارية / رقم الصفحة كما في الصورة */
.page-indicator-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80pt;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
