.image-editor-container {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.image-editor-canvas-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: #e8e8e8;
    background-image:
        linear-gradient(45deg, #d0d0d0 25%, transparent 25%),
        linear-gradient(-45deg, #d0d0d0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #d0d0d0 75%),
        linear-gradient(-45deg, transparent 75%, #d0d0d0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.image-editor-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    align-items: center;
}

.image-editor-toolbar .tool-group {
    display: flex;
    gap: 2px;
    padding: 0 8px;
    border-right: 1px solid #e0e0e0;
}

.image-editor-toolbar .tool-group:last-child {
    border-right: none;
}
