.dropzone{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dropzone .instruction-text{
    color: #333;
}
.dropzone.dragover .instruction-text{
    color: #aaa;
}
.upload-icon{
    transition: .5s;
}

#add-file{
    display: none;
}
#file-upload{
    position: absolute;
    opacity: 0;
}

#file-upload:hover{
    cursor: pointer;
}
.return-button:hover{
    text-decoration: none;
}

.dropzone *{
    overflow: visible;
}
@media screen and (max-width: 500px){
    *{
        overflow-x: hidden;
    }
    table *{
        overflow: hidden !important;
    }
}

/**{*/
/*    overflow-x: hidden;*/
/*    overflow-y: auto;*/
/*}*/