.afmpp-protect-images img:not([data-afmpp-allow-copy="1"]):not(.afmpp-allow-copy),
.afmpp-protect-images picture:not([data-afmpp-allow-copy="1"]):not(.afmpp-allow-copy) img:not([data-afmpp-allow-copy="1"]):not(.afmpp-allow-copy) {
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

.afmpp-allow-copy img,
[data-afmpp-allow-copy="1"] img,
img.afmpp-allow-copy,
img[data-afmpp-allow-copy="1"] {
    -webkit-user-drag: auto !important;
    -webkit-user-select: auto !important;
    user-select: auto !important;
    -webkit-touch-callout: default !important;
}

.afmpp-bg-protected {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

#afmpp-protection-notice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2147483646;
    max-width: min(360px, calc(100vw - 36px));
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(15,23,42,.96);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.28);
    font: 600 14px/1.35 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

#afmpp-protection-notice.afmpp-show {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    #afmpp-protection-notice {
        transition: none;
    }
}
