
/* الحاوية الرئيسية */
#sub-links {
  background: #f4f4f7;
  padding: 20px;
  border-radius: 12px;
  font-family: "Tajawal", Arial, sans-serif;
  max-width: 900px;
  margin: 0 auto; /* لجعلها في منتصف الصفحة */
  text-align: center;
}

/* النصوص فوق الروابط */
#sub-links p, #sub-links h2 {
  margin-bottom: 15px;
  color: #222;
}

/* قائمة الروابط */
#sub-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* يسمح بالانتقال لسطر جديد */
  justify-content: center; /* محاذاة وسط */
  gap: 10px; /* مسافة بين الأزرار */
}

/* كل زر/رابط */
#sub-links ul li a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: #222;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  min-width: 100px; /* عرض موحد تقريبا */
  text-align: center;
}

/* تأثير عند المرور */
#sub-links ul li a:hover {
  background: #292929;
  color: #fff;
  transform: translateY(-2px); /* حركة خفيفة للأزرار */
}
