Just a tiny CSS suggestion: make label text non selectable. ```css .p5c-options label { -webkit-user-select: none; -ms-user-select: none; user-select: none; } ``` This way we could prevent unwanted text selection while moving around the recorder UI. 