/* تهيئة أساسية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Tahoma, Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  direction: rtl; /* موقع عربي */
}

/* العنوان الرئيسي */
h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 1.6rem;
  color: #555;
}

/* حاوية جميع الأقسام */
.forum-sections {
  max-width: 129%;
  margin: 0 auto 8px auto; /* توسيط + مساحة سفلية */
}

/* كل قسم عبارة عن سطر واحد (مستطيل) */
.section-row {
    border-radius: 8px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 2px solid #eeeeee;
    padding: 15px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

/* تأثير بسيط عند مرور الماوس */
.section-row:hover {
  background-color: #e3e3e3;
}

/* الجهة اليسرى: اسم القسم + آخر موضوع */
.section-left {
  display: flex;
  flex-direction: column; /* عموديًا: سطر لاسم القسم ثم سطر للموضوع */
  gap: 5px;               /* مسافة بين العناصر */
}

/* اسم القسم */
.section-name {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
}

.section-name a {
  text-decoration: none;
  color: #2c3e50;
  transition: color 0.3s;
}

.section-name a:hover {
  color: #c0392b; /* لون مميز عند التحويم */
}

/* آخر موضوع */
.section-last-thread {
  font-size: 0.9rem;
  color: #666;
}

.section-last-thread a {
  text-decoration: none;
  color: #2980b9;
  transition: color 0.3s;
}

.section-last-thread a:hover {
  color: #8e44ad; 
}

/* الجهة اليمنى: عدد المواضيع والردود والمشاهدات */
.section-right p {
    margin: 0;
    font-size: 0.9rem;
    color: #444;
    text-align: left;
    background-color: #fff; /* خلفية بيضاء */
    border: 1px solid #eeeeee; /* حدود سوداء */
    border-radius: 10px;    /* زوايا منحنية */
    padding: 10px;          /* مسافة داخلية لتباعد النص عن الحدود */
}

@media screen and (max-width: 600px) {
  /* جعل كل قسم يعرض في عمود واحد وتوسيط العناصر */
  .forum-sections .section-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  /* تمديد المحتويات داخل القسم وتوسيط النصوص */
  .forum-sections .section-left,
  .forum-sections .section-right {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  
  /* تنسيق عنوان القسم مع خط فاصل */
  .forum-sections .section-left .section-name {
    font-size: 1.2em;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  
  /* تنسيق بيانات آخر موضوع مع مسافة مناسبة */
  .forum-sections .section-left .section-last-thread {
    font-size: 0.9em;
    margin-top: 5px;
  }
  
  /* تعديل القسم الخاص بالمواضيع والردود باستخدام Flexbox */
  .forum-sections .section-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .forum-sections .section-right p {
    font-size: 0.9em;
    margin: 0;
  }
}


