.files-app {
    height: 50vh;
    width: 50vw;
    top: 7vh;
    left: 45vw;
}

.files-body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar {
    border-right: 1px solid gray;
    height: 100%;
    width: 20%;
    padding: 1vh;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1vh;
    flex-direction: column;
}

.sidebar button {
    border: none;
    height: auto;
    width: 100%;
    padding: 1vh;
    cursor: pointer;
    background-color: blue;
    color: white;
}

.active {
    background-color: gray;
}

#files-collection {
    border-left: 1px solid gray;
    height: 100%;
    width: 80%;
    padding: 2vh;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 1vw;
    flex-wrap: wrap;
    background-color: white;
}

.file {
    height: auto;
    width: 5vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vh;
    flex-direction: column;
    cursor: pointer;
}