.dropzone {
    border: 2px dashed #b5bac1;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background-color: #f7f7f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone:hover {
    border-color: #3273dc;
    background-color: #f0f7ff;
}

.dropzone.dz-drag-hover {
    border-color: #3273dc;
    background-color: #f0f7ff;
}

.dropzone.is-processing {
    cursor: wait;
    opacity: 0.65;
}

.dropzone.is-processing .dz-remove {
    pointer-events: none;
}

.dz-message {
    color: #666;
    font-size: 1rem;
}

.dropzone .dz-preview {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 1rem;
    background-color: #fafafa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    text-align: left;
    position: relative;
    box-sizing: border-box;
}

.dropzone .dz-preview .dz-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding: 0 3rem 0 0;
    position: static;
    opacity: 1;
    min-width: 0;
    max-width: none;
    color: inherit;
    text-align: left;
}

.dropzone .dz-preview .dz-details .dz-filename {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.dropzone .dz-preview .dz-details .dz-filename span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    color: #363636;
    font-size: 0.95rem;
    background-color: transparent;
    border: 0;
}

.dropzone .dz-preview .dz-details .dz-size {
    margin: 0;
    color: #7a7a7a;
    font-size: 0.85rem;
    white-space: nowrap;
}

.dz-progress {
    margin: 0.75rem 0;
}

.dz-upload {
    display: block;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.dz-error-message {
    color: #f14668;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.dropzone .dz-preview .dz-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid #f14668;
    border-radius: 50%;
    color: #f14668;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.dropzone .dz-preview .dz-remove:hover,
.dropzone .dz-preview .dz-remove:focus {
    background-color: #f14668;
    color: #fff;
    text-decoration: none;
}

.dz-success-mark,
.dz-error-mark {
    display: none;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: #48c774;
}

.dz-preview.dz-success .dz-success-mark {
    display: block;
    color: #48c774;
}

.dz-preview.dz-error .dz-error-mark {
    display: block;
    color: #f14668;
}

.dz-preview.dz-error .dz-error-message {
    display: block;
}