/* Security and Protection Styles */
/* Disable right-click */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Chrome, Opera */
}

/* Prevent image dragging */
img {
    pointer-events: none;
}

/* Prevent right-clicking on all images */
img {
    pointer-events: none; /* Disable interaction with images */
}

img {
    /* Overlay to disable right-click on every image */
    display: block;
    width: 100%;
    height: auto;
}

img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* Transparent overlay */
}