.upload {
    border: 1px solid black;
    border-radius: 5px;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
}

.upload.success {
    background-color: limegreen;
}
.upload.error {
    background-color: lightcoral;
}
.upload .status {
    color: black;
    font-size: medium;
    text-align: center;
}
.upload.dragover {
    background-color: aquamarine;
}
.dropzone {
    box-sizing: border-box;
    border: solid black 1px;
    border-radius: 0.375rem;
    z-index: 10;
    overflow: hidden;
}
/* Upload files*/
.dropzone.dragover {
	background-color: #fafafa;
    outline-offset: -17px;
    border: 2px solid #000;
    box-sizing: border-box;
}
table.files {
    width: 100%;
}