.table-of-contents.toc-accordion .toc-title {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    user-select: none;
}

.table-of-contents.toc-accordion .toc-toggle-icon {
    display: inline-block;
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
}

.table-of-contents.toc-accordion.toc-collapsed {
    padding-bottom: 5px;
}

.table-of-contents.toc-accordion .toc-content-wrapper {
    transition: all 0.3s ease;
}


/* Hover effect for title */

.table-of-contents.toc-accordion .toc-title:hover {
    opacity: 0.9;
}


/* RTL support */

.rtl .table-of-contents.toc-accordion .toc-toggle-icon {
    margin-left: 0;
    margin-right: 10px;
}