/* iBook Live — no text selection on UI; allow inputs and copy targets */
html,
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: 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;
}

.menu-toggle,
.mobile-drawer-close,
.mobile-drawer-item,
.mobile-drawer-check,
.mobile-drawer-nav {
    user-select: none;
    -webkit-user-select: none;
}
