
.l-tree-view {
    list-style-type: none;
    padding-left: 0;
}

.l-tree-view-item {
    padding: 4px 0 4px 20px;
    position: relative;
}

.l-tree-view-item:hover {
    background-color: var(--w98-blue);
    color: white;
}

.l-tree-view-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
}

.l-tree-view-item[data-type="link"]::before {
    background-image: url('/static/icons/shell_window1.png');
}

.l-tree-view-item[data-type="folder"]::before {
    background-image: url('/static/icons/directory_closed-2.png');
}

.l-tree-view-item[data-type="folder"][data-state="open"]::before {
    background-image: url('/static/icons/directory_open_cool-4.png');
}
