.auw-container {
    margin-bottom: 20px;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
}

.auw-dropzone {
    border: 2px dashed #007cba;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background: #f9f9f9;
    transition: background 0.3s;
}

.auw-dropzone:hover, .auw-dropzone.dragover {
    background: #e6f7ff;
}

#wc-preview-canvas {
    border: 1px solid #ddd;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Modal Styles */
.auw-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auw-modal-content {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 5px;
}

.auw-modal-actions {
    margin-top: 15px;
    text-align: right;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

#wc-image-to-crop {
    display: block;
    max-width: 100%;
}