/* General TOC Container Styles */
div.quick-content-table-toc {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

/* TOC Header */
div.quick-content-table-toc h2 {
    margin-bottom: 10px;
}

/* List Styles */
div.quick-content-table-toc ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

div.quick-content-table-toc ul li {
    margin-bottom: 5px;
    line-height: 1.5;
    padding-left: 15px; /* Adjust padding to indent bullets */
    list-style-position: inside; /* Align bullets with text */
}

/* Bold H2 items */
div.quick-content-table-toc ul li.h2 {
    padding-left: 15px; /* Basic padding for H2 items */
    font-weight: bold !important; /* Make H2 items bold */
}

div.quick-content-table-toc ul li.h3 {
    padding-left: 30px; /* Increase padding for H3 items */
}

div.quick-content-table-toc ul li.h4 {
    padding-left: 45px; /* Increase padding for H4 items */
}

div.quick-content-table-toc ul li.h5 {
    padding-left: 60px; /* Increase padding for H5 items */
}

div.quick-content-table-toc ul li.h6 {
    padding-left: 75px; /* Increase padding for H6 items */
}

/* Link Styles */
div.quick-content-table-toc ul li a {
    text-decoration: none;
}

div.quick-content-table-toc ul li a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    div.quick-content-table-toc {
        padding: 10px;
    }
}