/* Style for Table of Contents Container */
#custom-toc-container {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

/* Title Style */
.toc-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

/* List Style */
#custom-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#custom-toc-list ul {
    list-style: none;
    padding-right: 20px; /* Indent for H3 items */
}

#custom-toc-list li a {
    display: block;
    color: #333;
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

#custom-toc-list li a:hover {
    color: #83b735; /* Woodmart's primary color */
    transform: translateX(5px);
}