[__t="Explorer"] {
    @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.2em;
        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;
    }
}