#an-doc-explorer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#an-breadcrumb {
    font-size: 14px;
}

#an-explorer {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

#an-tree {
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

#an-tree ul {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

#an-tree li {
    list-style: none;
    margin: 6px 0;
    cursor: pointer;
/*     padding: 6px 10px;
    border-radius: 4px;
    transition: background-color .2s ease; */
}

#an-tree li:hover {
    cursor: pointer;
/*     background: #f3f4f6; */
}

/* #an-tree li.active {
    background: #e6f0ff;
    font-weight: 600;
} */

.folder-label {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
}

.folder-label:hover {
    background: #f3f4f6;
}

.folder-label.active {
    background: #e6f0ff;
    font-weight: 600;
}

#an-content {
    min-height: 400px;
}

#an-content a {
    display: block;
    margin-bottom: 10px;
}