/* Table of Contents CSS */
/* Include this file in your HTML to style the table of contents */

.toc-container {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #1c173b !important;
    font-size: 16px !important;
}

.toc-container h2 {
    color: #1f508a;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 0 !important;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
    margin-bottom: 8px;
}

.toc-container ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.toc-container ul li {
    margin-bottom: 3px;
}

.toc-container ul > li > a {
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    display: block;
    padding: 1px 0;
    transition: padding-left 0.2s ease;
}

.toc-container ul > li > a:hover{
    /* color: #0056b3; */
    padding-left: 6px;
}

.toc-container ul > li > a::before {
    content: "❯ ";
    color: #007bff;
}