.sv-file-dropzone {
    position: relative;
    width: 100%;
}

.sv-file-dropzone-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.sv-file-dropzone-area {
    border: 2px dashed var(--vz-border-color, #ced4da);
    border-radius: 0.375rem;
    padding: 1.75rem 1rem;
    text-align: center;
    cursor: pointer;
    background: var(--vz-light, #f8f9fa);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.sv-file-dropzone-area:hover,
.sv-file-dropzone-area.is-dragover {
    border-color: var(--vz-primary, #405189);
    background: rgba(64, 81, 137, 0.06);
}

.sv-file-dropzone.has-file .sv-file-dropzone-area {
    border-color: var(--vz-success, #0ab39c);
    background: rgba(10, 179, 156, 0.06);
}

.sv-file-dropzone-icon {
    font-size: 2.5rem;
    color: var(--vz-primary, #405189);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sv-file-dropzone-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--vz-body-color, #212529);
}

.sv-file-dropzone-hint {
    font-size: 0.8125rem;
}

.sv-file-dropzone-filename {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vz-success, #0ab39c);
    word-break: break-word;
}

.sv-file-dropzone-filename:empty {
    display: none;
}

.sv-file-dropzone.is-invalid .sv-file-dropzone-area {
    border-color: var(--vz-danger, #f06548);
}

.swal2-container .sv-file-dropzone,
.swal2-popup .sv-file-dropzone,
.swal2-toast .sv-file-dropzone,
.toast .sv-file-dropzone,
.toastify .sv-file-dropzone,
.Toastify .sv-file-dropzone {
    display: none !important;
}
