#jss-protection-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    max-width: 92%;
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
    z-index: 2147483647;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-align: center;
}

#jss-protection-toast.jss-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

body.jss-disable-copy *:not(input):not(textarea):not(select) {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

body.jss-protected img,
body.jss-protected a,
body.jss-protected div,
body.jss-protected section,
body.jss-protected article {
    -webkit-user-drag: none;
}

#jss-devtools-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    color: #fff;
    z-index: 2147483646;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

#jss-devtools-overlay.jss-active {
    display: flex;
}

#jss-devtools-overlay > div {
    max-width: 560px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

#jss-devtools-overlay strong {
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
}

#jss-devtools-overlay p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

@media print {
    body.jss-block-print * {
        visibility: hidden !important;
    }

    body.jss-block-print::before {
        content: "Printing is disabled on this page.";
        visibility: visible !important;
        display: block !important;
        text-align: center;
        margin-top: 45vh;
        font-size: 18px;
    }
}
