/* Custom Enhancements for nquangit.io.vn - Cybersecurity Blog */

/* ============================================
   SCROLLBAR CUSTOMIZATION
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--red-6);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--red-1), var(--red-2));
    border-radius: 6px;
    transition: background 0.3s ease;
    border: 2px solid var(--red-6);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--red-0), var(--red-1));
}

/* ============================================
   TABLE OF CONTENTS - MINIMAL & CLEAN
   ============================================ */
#TableOfContents {
    background: transparent !important;
    border-left: 3px solid var(--red-2) !important;
    border-radius: 0 !important;
    /* padding: 0.5rem 0 0.5rem 1.5rem !important; */
    /* margin: 2rem 0 !important; */
}

#TableOfContents a {
    text-decoration: none !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    transition: color 0.2s ease !important;
    display: inline-block;
}

#TableOfContents li {
    line-height: 1.2 !important;
}
