/* Feature: Table of Contents Styling */
.toc-container {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 400px;
}

.toc-title {
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

#toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#toc-list li {
    margin: 8px 0;
}

#toc-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

#toc-list a:hover {
    color: #00d4ff;
}

#toc-list .toc-h3 {
    margin-left: 20px;
    font-size: 13px;
}