/*
 * Delta content protection is deliberately scoped to the main page content.
 * Contact links and form controls remain selectable and fully usable.
 */
body.delta-content-protection main :where(
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li,
    blockquote,
    figcaption,
    td,
    th
) {
    -webkit-user-select: none;
    user-select: none;
}

body.delta-content-protection main :where(
    input,
    textarea,
    select,
    option,
    [contenteditable="true"],
    [role="textbox"],
    [data-delta-copy-allowed],
    a[href^="tel:"],
    a[href^="sms:"],
    a[href^="mailto:"],
    a[href*="wa.me"],
    a[href*="api.whatsapp.com"],
    a[href*="whatsapp.com"],
    form,
    form *
) {
    -webkit-user-select: text;
    user-select: text;
}

body.delta-content-protection main img:not([data-delta-copy-allowed]) {
    -webkit-user-drag: none;
    user-drag: none;
}
