.tree ul {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0);
    transition: border-left-color 0.5s ease-in;
    list-style: none;
    margin-left: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.tree.tree-visible ul {
    border-left-color: rgba(255, 255, 255, 0.2);
}
.tree li {
    padding-left: 16px;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}
.tree li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 16px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.5s ease-in;
}
.tree.tree-visible li::before {
    background-color: rgba(255, 255, 255, 0.2);
}
.tree > ul {
    border-left: none !important;
    padding-left: 0;
    margin-left: 0;
}
.tree > ul > li::before {
    display: none;
}
.tree {
    font-size: 0.75rem;
    line-height: 1.8;
    font-family: 'IBM Plex Mono', monospace;
    color: #a1a1aa;
    padding: 3rem;
}
.tree a {
    color: #e5e7eb;
    transition: color 0.2s ease;
    text-decoration: none;
}
.tree a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}
.tree .text-gray-400 {
    color: #71717a !important;
}
