[__t="Explorer"], [__t="ExplorerGrid"] {
    @keyframes hideleft {
        0% {
            width:40%;
        }
        100% {
            width: 0px;
        }
    }
    ul {
        list-style-type: none;
        padding-left: 0.8em;
        margin: 0;
        border-left: 0.1em solid #585858;
        margin-inline-start: 0.2em;
    }
    li {
        list-style-type: none;
        margin-left: 0.4em;
        font-size: 1em;
        font-style: initial;
    }
    .subTree{
        font-size: 0.8em;
    }
    .hideTree{
        animation: hideleft 0.1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    }
    .folder {
        cursor: pointer;
        align-items: center;
        color: #000000;
        font-size: 1em;
        line-height: 1.4em;
        font-family: sans-serif;
    }
    .folder::before {
        content: "▶";
        margin-right: 0.2em;
        font-size: 1em;
        display: inline-block;
        transform: rotate(0deg);
    }
    .folder:has(>ul.show)::before {
        transform: rotate(90deg);
    }
    .file {
        align-items: center;
        font-size: 1em;
        color: #111;
        line-height: 1.4em;
        font-family: monospace;

    }
    .file::before {
        content: "📄";
        margin-right: 0.2em;
        font-size: 1em;
    }
    .file:hover {
        background-color: #d0d6fd87;
    }
    ul{
        /*display: none;*/
    }
    ul.show {
        display: block;
    }
    #file-tree{
        width: 15rem;
        overflow-y: auto;
        height: 90vh;
    }
}
._Explorer{
    :root {
        --indent: 18px;
    }
    body {
        font-family: Arial, sans-serif;
        padding: 1rem;
    }
    .tree {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    .tree-node {
        margin-left: var(--indent);
    }
    .row {
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1.6;
    }
    .label {
        cursor: default;
    }
    .toggle {
        border: none;
        background: none;
        cursor: pointer;
        padding: 0 2px;
        font-size: 12px;
        width: 1.1em;
        line-height: 1;
    }
    .toggle:focus {
        outline: 2px solid #999;
        outline-offset: 2px;
    }
    .chev {
        display: inline-block;
        transition: transform 0.15s;
    }
    .tree-node.expanded > .row .chev {
        transform: rotate(90deg);
    }

    .children {
        display: none;
        margin: 4px 0 0 0;
        padding-left: 0;
    }
    .tree-node.expanded > .children {
        display: block;
    }

    /* Optional: subtle hover for non-leaf labels (doesn't toggle) */
    .tree-node.has-children > .row .label {
        cursor: pointer;
    }
    .tree-node.has-children > .row .label:hover {
        text-decoration: underline;
    }
}