/* General TOC Container */
.toc {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* TOC Title */
.toc p {
    font-size: 1.2em;
    font-weight: normal;
    color: #333;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}

.toc p i {
    margin-right: 8px;
    color: #007bff; /* Font Awesome icon color */
}

/* TOC Links */
.toc div {
    margin-bottom: 6px;
    line-height: 1.5;
}

.toc div:last-child {
    margin-bottom: 0;
}

.toc div a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.toc div a:hover {
    color: #007bff;
    transform: translateX(2px); /* Slight hover animation */
}

/* Bullet Styles */
.toc div i.fa-circle {
    font-size: 0.6em;
    margin-right: 8px;
    color: #007bff; /* Color of the Font Awesome circle icon */
}

/* Custom Symbol Styles */
.toc div i.fa-star,
.toc div i.fa-heart,
.toc div i.fa-check {
    font-size: 1em;
    margin-right: 8px;
    color: #ff6f61; /* Example custom symbol color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .toc {
        padding: 10px;
    }

    .toc p {
        font-size: 1em;
    }

    .toc div a {
        font-size: 0.9em;
    }
}