/* CropR — Crop button */
.duu-crop-button {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 20px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
}

/* Cropper preview image */
.duu-cropr-preview {
    max-width: 100%;
    margin: 10px 0;
    display: block;
}

/* ── Post-crop success state ─────────────────────────────────────────────── */

/* Final preview — green border communicates "this is what will be uploaded". */
.duu-cropr-final-preview {
    max-width: 100%;
    margin: 10px 0 0;
    border-radius: 4px;
    display: block;
    border: 2px solid #46b450;
}

/* Success banner */
.duu-cropr-success {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 10px;
    padding: 8px 12px;
    background: #f0fff4;
    border: 1px solid #46b450;
    border-radius: 3px;
    font-size: 13px;
    color: #2a5c2d;
}

/* "Modifier" button inside the success banner */
.duu-cropr-redo {
    background: none;
    border: 1px solid #2a5c2d;
    border-radius: 3px;
    padding: 2px 10px;
    font-size: 12px;
    cursor: pointer;
    color: #2a5c2d;
    margin-left: auto;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.duu-cropr-redo:hover {
    background: #2a5c2d;
    color: #fff;
}
