
/* GOODMORNING CONTENT PROTECTION
   - 일반 사용자 기준 우클릭/드래그/선택 억제 보조 스타일
   - 완전한 복제 방지는 아니며, 콘텐츠 보호 고지와 함께 사용합니다.
*/
html, body {
  -webkit-touch-callout: none;
}
body, body * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select,
[contenteditable="true"],
.review-form, .review-form *,
.form-card, .form-card *,
.admin-page, .admin-page *,
textarea, textarea * {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
img, svg, picture, canvas {
  -webkit-user-drag: none;
  user-drag: none;
}
