.restore-form .restore-files {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--theme-light-input-background-color);
}

.restore-form .restore-files > .file-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, calc((100% - 60px) / 3));
    align-items: start;
}

.restore-form .restore-files > .file-list > .file-label {
    border-radius: 8px;
    flex: 1 0 auto;
    background-color: rgba(0,0,0,0.08);
    height: 84px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 8px;
}

.restore-form .restore-files > .file-list > .file-label input {
    position: fixed;
    top: -9999px;
    left: -9999px;
    z-index: -9999;
    opacity: 0;
}

.restore-form .restore-files > .file-list > .file-label > .file-name {
    color: var(--theme-light-text-color);
    opacity: 0.4;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 15px;
    display: none;
    max-width: 100%;
}

.restore-form .restore-files > .file-list > .file-label > .file-icon {
    font-size: 24px;
    text-align: center;
    opacity: 0.4;
}


.restore-form .restore-files > .desc {
    padding-top: 8px;
    font-size: 12px;
    text-align: center;
}