.canvas-image-editor {
    max-width: 100%;
    margin: 20px auto;
    text-align: center;
}

.upload-container {
    width: 558px;
    height: 558px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    background: url('bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.upload-icon {
    font-size: 60px;
    color: #666;
    margin-bottom: 20px;
}

.upload-text {
    font-size: 24px;
    color: #666;
}

.editor-wrapper {
    margin: 0 auto;
    max-width: 100%;
}

#imageCanvas {
    border: 1px solid #ddd;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.editor-controls {
    margin-top: 15px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .upload-container {
        width: 300px;
        height: 300px;
    }
    
    .upload-icon {
        font-size: 40px;
    }
    
    .upload-text {
        font-size: 18px;
    }
}

div#editorWrapper {
    display: flex
;
    justify-content: center;
    align-items: center;
}