/**
 * Hukhta TOC Block - Frontend Styles
 */

.hukhta-toc-block {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.6;
}

.hukhta-toc-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.hukhta-toc-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.hukhta-toc-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.hukhta-toc-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.hukhta-toc-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.hukhta-toc-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Highlight effect for headers */
.hukhta-toc-highlight {
    background-color: rgba(0, 123, 255, 0.1);
    transition: background-color 0.5s ease;
} 