.targetDropZone {
    min-height: 50px;
    cursor: pointer;
    color: var(--color-primary);
    border: 1px dashed var(--color-primary);
    border-radius: 5px;
    background-color: #F2F2F2;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.targetDropZone.dz-max-files-reached:before {
    content: 'Nombre de fichier atteint';
    display: block;
    position: absolute;
    color: red;
    top: 0;
}

.targetDropZone:hover,
.targetDropZone.dz-drag-hover {
    background-color: #D7EDF9;
    transition: background-color 0.3s;
}

.containerDropZone .containerDropZone-text {
    display: flex;
    gap: 20px;
}

.containerDropZone .dropzone-previews {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.containerDropZone .dropzone-previews .dz-remove {
    width: 30px;
    height: 30px;
    margin-right: 11px;
    text-align: center;
    min-width: 30px;
    max-width: 30px;
}

.containerDropZone .dropzone-previews .dz-remove i {
    border-radius: 50%;
    border: 1px solid red;
    width: 100%;
    height: 100%;
    font-size: 17px;
    line-height: 28px;
    color: red;
}

.containerDropZone .dropzone-previews .dz-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #2081C9;
    border-radius: 10px;
    overflow: hidden;
}

.containerDropZone .dropzone-previews .dz-details {
    margin-right: auto;
}

.containerDropZone .dz-preview:only-of-type {
    grid-column: span 2;
}
.containerDropZone .dropzone-previews .dz-preview .dz-image {
    padding: 5px;
}

.containerDropZone .dropzone-previews .dz-preview .dz-image img {
    width: 73px;
}

.containerDropZone [data-dz-infos] {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Media queries */
@media (max-width: 768px) {
    .containerDropZone .dropzone-previews {
        grid-template-columns: 1fr;
    }
}
