.image-cropper-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 16px;
}

.image-cropper-dialog {
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.image-cropper-header {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.image-cropper-body {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.image-cropper-stage {
    flex: 1 1 320px;
    min-width: 280px;
    max-height: 60vh;
}

.image-cropper-stage .image-cropper-source {
    display: block;
    max-width: 100%;
}

.image-cropper-preview-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.image-cropper-preview-label {
    font-size: 13px;
    color: #6c757d;
}

.image-cropper-preview {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #eee;
}

.image-cropper-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
}

.image-cropper-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.image-cropper-cancel {
    background: #fff;
    border-color: #ced4da;
    color: #495057;
}

.image-cropper-confirm {
    background: #0a66c2;
    color: #fff;
}
