#myDropzone {
    min-height: auto;
    border: 2px dashed #ccc;
    border-radius:10px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#myDropzone .dz-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 150px;
}

#myDropzone .dz-preview .dz-details {
    text-align: center;
    padding: 5px;
}

#dropzone-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#file-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#file-list li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #F4F7FB;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.remove-button {
    margin-left: 10px;
}