.file-list {
    display: flex;
    flex-direction: column;
    gap: 0;

    .empty {
        color: yellow;
    }

    .file, .dir {
        margin: 0;
        padding: var(--gap);
        border: 1px solid #5698ca;
        border-top: none;
        display: flex;
        flex-direction: row;
        gap: var(--gap);
        align-items: center;
    }

     .title {
        background-color: var(--bg-lighter);
        border: 1px solid #5698ca;
        padding: var(--gap);
        margin: 0;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }

    &>:first-child {
        border-top: 1px solid #5698ca;
    }
}