#wfc-cropper-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wfc-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.wfc-close {
    color: #666;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.wfc-close:hover {
    color: #000;
}
.wfc-canvas-container {
    max-height: 50vh;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    text-align: center;
}
