/* iPocket Live — no text selection on UI; allow inputs and copy targets */
html,
body,
#root {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

input,
textarea,
select,
option,
[contenteditable="true"],
.allow-select,
.select-text,
code.api-key {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

button,
label,
legend,
th,
td,
.panel-topbar,
.top-header,
.menu-toggle,
.mobile-drawer-close,
.mobile-drawer-item,
.mobile-drawer-check,
.mobile-drawer-nav {
    user-select: none;
    -webkit-user-select: none;
}
