/* WebBook — 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;
}

button,
label,
.top-header,
.header-left,
.header-right,
.refresh-btn,
.logout-btn,
.theme-btn,
.user-badge,
.box,
.table-container,
table,
th,
td,
.connect-match-row,
.connect-select-all,
.modal,
[role="dialog"] {
    user-select: none;
    -webkit-user-select: none;
}
