/* تنسيق جدول المحتويات */
.contents-table {
    border: 2px solid #f1f1f1;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    color: #333;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* العنوان داخل جدول المحتويات */
.contents-table h3 {
    font-size: 18px;
    margin: 0;
    padding-bottom: 10px;
    color: #3f24fa;
}

/* تنسيق القائمة */
.contents-table ul {
    display: none; /* إخفاء العناوين بشكل افتراضي */
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* تنسيق العناصر داخل القائمة */
.contents-table li {
    margin-bottom: 8px;
    font-size: 14px;
}

.contents-table a {
    color: #3f24fa;
    text-decoration: none;
    font-weight: bold;
}

.contents-table a:hover {
    text-decoration: underline;
}

/* زر إظهار/إخفاء الجدول */
#toggle-table {
    background-color: #3f24fa;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

#toggle-table:hover {
    background-color: #2a1db3;
}
