/* Redplace Pay - kopyalama/sağ tık koruması (lyssız görünümü bozmadan) */
.rp-protected,
.rp-protected body {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}
/* Kullanıcı girişleri (form alanları) seçilebilir/yalapıştırılabilir kalsın */
.rp-protected input,
.rp-protected textarea,
.rp-protected select,
.rp-protected [contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
/* Görseller sürüklenip kopyalanamasın */
.rp-protected img {
	-webkit-user-drag: none;
	user-drag: none;
	pointer-events: none;
}
