.root {
    border: 2px dashed #aaa;
    min-height: 100px;
    min-width: 200px;
    display: inline-block;
}

.rootDraggingOver {
    border: 2px dashed #00AA00;
    min-height: 100px;
    min-width: 200px;
    display: inline-block;
}

.root:hover {
    border: 2px dashed #666;
    min-height: 100px;
    min-width: 200px;
    display: inline-block; 
}

.instructionsContainer {
    text-align: center;
    width: 100%;
}

.instructions {
    display:inline-block;
    padding: 10px;
    width: 50%;
}

.uploadButtonContainer {
    text-align: center;
}

.uploadButtonWrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.uploadButton {
    border: 2px solid #205081;
    color: #205081;
    background-color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
}

/* 

    Use the below if you want to add a hover style to the button

*/
/* .uploadButtonWrapper:hover .uploadButton {
    border: 2px solid #205081;
    color: white;
    background-color: #205081;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
} */

.uploadButtonInput {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.uploadFilesContainer {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.uploadFile {
    display: inline-flex;
    padding: 10px;
    box-shadow: 1px 1px 4px #aaa;
}

.uploadFileLabel {
    flex: 1 auto;
}

.uploadFileStatus {
    margin-left: 10px;
    width: 25px;
}