#file-explorer {
    width: 100%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
}

#file-explorer .item-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    border-radius: 20px;
    animation-duration: 0.2s;
    cursor: pointer;
}

#file-explorer .item-display:hover {
    /* transform: scale(1.02); */
    transform: translateX(20px);
}

#file-explorer .item-display .download-item-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

#file-explorer .item-display .size {
    margin-left: auto;
    white-space: nowrap;
}

#file-explorer .download-item-img {
    width: 50px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

#downloads-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 2rem 1rem;
}

#file-path {
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    #file-explorer .item-display:hover {
        transform: none;
    }
}