/* Watermark styling for images */
.watermarked {
    position: relative;
    display: inline-block;
}

.watermarked::after {
    content: '© DoubtReset';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 5px;
    border-radius: 3px;
    pointer-events: none;
}

/* Apply watermark to all images */
img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}