.printable-editor-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.editor-toolbar button,
.editor-toolbar input,
.editor-toolbar select {
    padding: 6px 12px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 4px;
}

.editor-toolbar button:hover {
    background: #e0e0e0;
}

.editor-canvas-wrap {
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px;
    overflow: auto;
}
