/*
* تنسيق قائمة التنقل في رأس الصفحة
* يستهدف الروابط لتغيير اللون والخطوط
*/

/* لون روابط القائمة */
.header-links a {
    color: #ffffff !important;
    font-size: 14px !important;
    padding: 10px 15px !important;
    font-weight: 500 !important;
    position: relative; /* ضروري لتأثير الخط السفلي */
    transition: color 0.3s ease;
}

/* تأثير الخط السفلي عند التمرير */
.header-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff3b3f !important;
    transition: width 0.3s ease;
}

.header-links a:hover {
    color: #ff3b3f !important; /* لون أحمر عند التمرير */
}

/* يكبر الخط السفلي عند التمرير */
.header-links a:hover::after {
    width: 100%;
}

/* تنسيق القائمة الفرعية (إن وجدت) */
.header-links .dropdown-menu {
    background-color: #1a1a1a !important; /* خلفية القائمة الفرعية */
    border: 1px solid #333 !important;
}

.header-links .dropdown-menu a {
    color: #f0f0f0 !important;
}

.header-links .dropdown-menu a:hover {
    background-color: #2a2a2a !important;
    color: #ff3b3f !important;
}

/* تعديل المسافات بين عناصر القائمة */
.header-links > li {
    margin-right: 15px !important;
}

/* إخفاء الحدود السفلية في بعض الثيمات */
.header-links {
    border-bottom: none !important;
}