/* === SECURITY FEATURES ONLY === */

/* Prevent text selection in specific content areas */
.donation-info,
.thank-you,
.post-content,
.singlepost__container,
.form__section-container {
  user-select: none;
}

/* Disable right-click globally */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Prevent developer tool key combinations (to be used in JS, not CSS) */
/* Note: Not added in CSS file, must be added via <script> in HTML */