/* =========================
   تنسيق صفحة تحويل التاريخ الهجري
========================= */

/* عنوان الصفحة */
.hijri-date-page-title h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 25px;
}

/* حاويات الأقسام */
.hijri-date-container {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

/* الكروت */
.hijri-date-card {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px var(--color-shadow-strong);
    border: 1px solid var(--color-primary-soft-border);
}

/* بطاقة اليوم الحالية */
.hijri-date-today {
    background: var(--color-surface-alt);
}

/* عنوان داخل الكرت */
.hijri-date-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* نص الكرت */
.hijri-date-card p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--color-text);
}

/* الجداول */
.hijri-date-table,
.hijri-date-calendar {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    margin-top: 10px;
}

.hijri-date-table th,
.hijri-date-table td,
.hijri-date-calendar th,
.hijri-date-calendar td {
    border: 1px solid var(--color-border);
    padding: 10px;
}

.hijri-date-table th,
.hijri-date-calendar th {
    background-color: var(--color-surface-alt);
    font-weight: 700;
    color: var(--color-primary);
}

.hijri-date-table td,
.hijri-date-calendar td {
    font-weight: 500;
    color: var(--color-text);
}

/* responsive */
@media (max-width: 768px) {
    .hijri-date-page-title h1 {
        font-size: 2rem;
    }
    .hijri-date-card p {
        font-size: 1rem;
    }
}

/* =========================================
   📱 Hijri Date Responsive Fix
========================================= */

@media (max-width: 768px) {
  .hijri-date-table,
  .hijri-date-calendar {
    font-size: 0.9rem;
  }

  .hijri-date-table th,
  .hijri-date-table td,
  .hijri-date-calendar th,
  .hijri-date-calendar td {
    padding: 8px 6px;
    line-height: 1.6;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .hijri-date-table,
  .hijri-date-calendar {
    font-size: 0.85rem;
  }

  .hijri-date-table th,
  .hijri-date-table td,
  .hijri-date-calendar th,
  .hijri-date-calendar td {
    padding: 6px 5px;
  }
}