body {
  font-family: 'Tajawal', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.article-hero {
  background-color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.article-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.article-content {
  background-color: #fff;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px #eee;
  line-height: 1.9;
  font-size: 1.1rem;
}

.article-content h2 {
  margin-top: 2rem;
  color: #0277bd;
  font-size: 1.5rem;
}

.footer {
  text-align: center;
  background-color: #fff;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #eee;
}


table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  border: 1px solid #007bff; /* حدود كاملة للجدول باللون الأزرق */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  direction: rtl; /* اتجاه القراءة من اليمين إلى اليسار */
}

table th, table td {
  border: 1px solid #007bff; /* حدود كاملة لكل خلية باللون الأزرق */
  padding: 12px;
  text-align: right; /* محاذاة النص لليمين */
}

table thead th {
  background-color: #007bff; /* لون خلفية مميز لرأس الجدول (أزرق) */
  color: white;
  font-weight: bold;
}

table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

table tbody tr:hover {
  background-color: #e2f4ff; /* لون التظليل عند المرور بالفأرة */
}




