/* Protection des images - Styles essentiels */

/* S'assurer que les images ne peuvent pas être sélectionnées */
img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
    /* Permettre le scroll sur les images */
    touch-action: pan-y pinch-zoom !important;
}

/* Forcer les styles du filigrane */
#allogood-watermark-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    pointer-events: none !important;
}

/* Overlay anti-screenshot */
#anti-screenshot-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999998 !important;
    pointer-events: none !important;
}

/* Empêcher l'impression */
@media print {
    body * {
        visibility: hidden !important;
    }

    #allogood-watermark-overlay,
    #allogood-watermark-overlay * {
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
    }

    #allogood-watermark-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        background: white !important;
    }
}
