.dropzone {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Styling for the dropzone when dragging over */
.dropzone.dz-drag-hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

/* Preview container */
.dropzone .dz-preview {
    margin: 1em;
}

/* Preview image thumbnail */
.dropzone .dz-preview .dz-image {
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

/* File details */
.dropzone .dz-preview .dz-details {
    padding: 1em;
    text-align: center;
}

.dropzone .dz-preview .dz-filename {
    white-space: nowrap;
}

.dropzone .dz-preview .dz-size {
    margin-bottom: 1em;
    font-size: 0.9em;
}

/* Message styling */
.dropzone .dz-message {
    text-align: center;
    margin: 2em 0;
}

.dropzone .dz-message:before {
    content: '\f093';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2em;
    display: block;
    margin-bottom: 0.5em;
    color: #6c757d;
}

/* Hide success/error marks */
.dz-success-mark,
.dz-error-mark {
    display: none !important;
}

/* Progress bar */
.dropzone .dz-preview .dz-progress {
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    margin-top: 1em;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #0d6efd;
    border-radius: 3px;
}

/* Error state */
.dropzone .dz-preview.dz-error {
    border-color: #dc3545;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    color: #dc3545
}

/* Hide all success/error marks and related elements */
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.dropzone:hover {
    border-color: #0d6efd;
    background: #fff;
}

.dropzone .dz-message {
    margin: 2em 0;
}

.dropzone .dz-message .dz-button {
    color: #6c757d;
    font-size: 1.1em;
}