#image-editor-modal {
    position: fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-editor-container {
    background:white;
    
    display:flex;
    flex-direction:column;
}

.image-editor-toolbar {
    padding:10px;
    display:flex;
    justify-content:space-between;
}

#image-editor-canvas {
    border:1px solid #ddd;
}