/* Disable text selection globally */
body {
    -webkit-user-select: none;
    user-select: none;
}

/* Allow selection for specific elements like contact info */
.allow-select, 
.allow-select * {
    -webkit-user-select: text !important;
    user-select: text !important;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
}

/* Subtable Watermark Overlay */
.protected-img { position: relative; display: inline-block; }
.protected-img::after { content: "© 2026 Piyush"; position: absolute; inset: 0; background: rgba(0,0,0,0.05); color: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; pointer-events: none; font-size: 0.8rem; z-index: 10; }
