html.mv-contentguard-no-select body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html.mv-contentguard-no-select input,
html.mv-contentguard-no-select textarea,
html.mv-contentguard-no-select select,
html.mv-contentguard-no-select option,
html.mv-contentguard-no-select button,
html.mv-contentguard-no-select [contenteditable="true"],
html.mv-contentguard-no-select .mv-contentguard-allow,
html.mv-contentguard-no-select [data-mv-contentguard-allow] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html.mv-contentguard-no-drag img {
    -webkit-user-drag: none;
    user-drag: none;
}

.mv-contentguard-toast {
    position: fixed;
    right: auto;
    bottom: 24px;
    left: 50%;
    z-index: 2147483647;
    width: auto;
    max-width: min(520px, calc(100vw - 32px));
    padding: 14px 18px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    background: rgba(17, 24, 39, 0.96);
    border-top: 3px solid #d9a441;
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 12px, 0);
    transition: opacity 180ms ease, transform 180ms ease;
}

.mv-contentguard-toast.is-visible {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
}

.mv-contentguard-toast[hidden] {
    display: none !important;
}
