body {
    padding: 20vh 32px;
    font-size: 14px;
    background: #eee;
}
.container h1{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.wrapper{
    width: 800px;
    border: 1px solid #bebebe;
    border-radius: 10px;
    margin: 30px auto;
    padding: 20px;
}

#statusResponse p{
    font-weight: 500;
    font-size: 18px;
}

.file-input {
    display: inline-block;
    text-align: left;
    background: #bebebe;
    padding: 16px;
    width: 100%;
    position: relative;
    border-radius: 3px;
}
.file-input > [type='file'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.file-input > .button {
    display: inline-block;
    cursor: pointer;
    background: #eee;
    padding: 8px 16px;
    border-radius: 2px;
    margin-right: 8px;
    }

.file-input:hover > .button {
    background: #28a745;
    color: white;
}

.file-input > .label {
    color: #f3f2f2;
    white-space: nowrap;
}

.file-input.-chosen > .label {
    opacity: 1;
}

#fileList div{
    padding: 10px;
    border: 1px solid #bebebe;
    margin-bottom: 10px;
}

.progress-bar{
    background: #28a745;
}