.Filesystem_Content {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.Filesystem_Content-head {
    display: flex;
    color: grey;
    font-size: 15px;
    padding-bottom: 5px;
    background-color: var(--new-main);
    padding: 16px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.Filesystem_Content-head-name {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    color: white;
}

.Filesystem_Content-head-size {
    width: 90px;
    color: white;
}

.Filesystem_Content-items {
    border-top: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
}

.Filesystem_Content-items a,
.Filesystem_Content-items button {
    padding: 16px;
}

.Filesystem_Content-empty {
    padding: 40px;
    text-align: center;
    color: grey;
}