body.sfa-copy-protected main,
body.sfa-copy-protected .site-footer,
body.sfa-copy-protected .site-header:not(:has(input:focus)) {
    -webkit-user-select: none;
    user-select: none;
}
body.sfa-copy-protected input,
body.sfa-copy-protected textarea,
body.sfa-copy-protected select,
body.sfa-copy-protected [contenteditable="true"],
body.sfa-copy-protected .sfa-assistant-panel {
    -webkit-user-select: text;
    user-select: text;
}
body.sfa-copy-protected img,
body.sfa-copy-protected video {
    -webkit-user-drag: none;
    user-drag: none;
}
.sfa-protection-notice {
    position: fixed;
    z-index: 99999;
    inset-inline-start: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    max-width: min(520px, calc(100vw - 32px));
    padding: 12px 18px;
    border: 1px solid #4d5352;
    background: #101313;
    color: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
    font: 600 12px/1.8 Cairo,Manrope,sans-serif;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease,visibility .2s ease;
}
.sfa-protection-notice.is-visible { opacity: 1; visibility: visible; }
@media print { .sfa-protection-notice { display:none!important; } }
