article #divToc {
    max-width: 20%;
    padding: 16px;
    background: white;
    border-radius: 8px;
    text-wrap: break-word;
    line-break: strict;
		border: 1px solid #20202040;
    margin-bottom: 16px;
}

article #divToc a {
    color: #202020;
    font-weight: 700;
    font-size: 1.2em;
}

article #divToc ul li a {
    color: #797979;
    font-weight: 500;
    font-size: 1em;
}

article #divToc a:hover {
    color: #54a5d5;
    text-decoration: none;
		transition-duration: 300ms;
}

article #divToc ul {
    list-style-type: decimal;
}

article #divToc ul {
    padding-left: 0;
    margin-left: 0;
}

article #divToc ul li {
    line-height: 1.5em;
    margin-bottom: 8px;
    pointer-events: fill;
    color: #202020;
    text-decoration: underline;
    pointer-events: fill;
    color: #202020;
    text-decoration: underline;
    margin-left: 15px;
    font-size: 12pt;
}

article #divToc ul li span {
    font-size: inherit;
}

/* Headings */
article h1 {
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #202020;
}

article h2 {
    display: block;
    font-size: 1.75em;
    font-weight: bold;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #202020;
}

article h3 {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #202020;
}

article h4 {
    display: block;
    font-size: 1.25em;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #202020;
}

/* Paragraphs */
article p {
    margin-bottom: 16px;
    font-size: 1em;
    line-height: 1.6em;
    color: #202020;
    letter-spacing: 0.01em;
    word-spacing: 0.01em;
    white-space: normal;
    hyphens: auto;
}

/* Bold text */
article b {
    font-weight: bold;
    color: #202020;
}

/* Blockquotes */
article blockquote {
    border-left: 4px solid #54a5d5;
    padding-left: 16px;
    margin: 16px 0;
    font-style: italic;
    color: #404040;
    background-color: #f8f8f8;
}

/* Inline code */
article code {
    font-family: "Courier New", Courier, monospace;
    background-color: #f2f2f2;
    padding: 2px 6px;
    border-radius: 4px;
    color: #d63384;
    font-size: 0.95em;
}

/* Code blocks */
article pre {
    font-family: "Courier New", Courier, monospace;
    background-color: #f2f2f2;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    color: #202020;
    font-size: 0.95em;
    margin-bottom: 16px;
}

/* Tables */
article table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

article table th,
article table td {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    text-align: left;
}

article table th {
    background-color: #f0f4f8;
    font-weight: bold;
    color: #202020;
}

article table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

article table tr:hover td {
    background-color: #eef7fb;
}

article h1,
article h2,
article h3,
article h4 {
    scroll-margin-top: 100px; /* adjust if you use sticky headers */
}