/* Base styles */
.eckb-article-toc-outline {
    margin: 0;
    padding: 0;
}
/* Estilos comunes para todos los niveles */
.eckb-article-toc__level {
    display: flex !important;
    align-items: center !important;
    margin: 5px 0;
    padding: 2px 0;
}
/* Nivel 1 */
.eckb-article-toc__level-1 {
    font-weight: bold;
}
/* Toggle button */
.ekb-toggle-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
    color: #bf5d13 !important;
    cursor: pointer !important;
    user-select: none !important;
}

.ekb-toggle-button svg {
    transition: transform 0.2s ease !important;
    width: 16px !important;
    height: 16px !important;
}

.ekb-toggle-button.expanded svg {
    transform: rotate(90deg) !important;
}

/* Links */
.eckb-article-toc__level a {
    text-decoration: none;
    color: inherit;
    flex: 1;
}
.eckb-article-toc__level a:hover {
    text-decoration: underline;
}
/* Indentación y estilos de niveles */
.eckb-article-toc__level-2 { 
    padding-left: 20px !important;
    font-weight: normal;
    display: none !important;
}
.eckb-article-toc__level-3 { 
    padding-left: 40px !important;
    font-weight: normal;
    display: none !important;
}
.eckb-article-toc__level-4 { 
    padding-left: 60px !important;
    font-weight: normal;
    display: none !important;
}
.eckb-article-toc__level-5 { 
    padding-left: 80px !important;
    font-weight: normal;
    display: none !important;
}
/* Cuando se muestran los elementos */
.eckb-article-toc__level.ekb-show {
    display: flex !important;
}