/* ÖZEKSOFT temel içerik koruma katmanı */
html.ozeksoft-content-protected,
html.ozeksoft-content-protected body,
html.ozeksoft-content-protected body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]):not(.allow-copy):not(.allow-copy *) {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

html.ozeksoft-content-protected img {
    -webkit-user-drag: none !important;
    user-drag: none !important;
}

.ozeksoft-protection-toast {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 9999999;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    padding: 13px 18px;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .24);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .25s ease;
    max-width: 320px;
}

.ozeksoft-protection-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .ozeksoft-protection-toast {
        left: 14px;
        right: 14px;
        bottom: 18px;
        text-align: center;
    }
}
