:root {}
/* Prevent text selection flash */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* Watermark overlay */
.lpac-watermark {
  position: fixed;
  pointer-events: none;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2147483647;
  background-image: var(--lpac-bg);
  background-repeat: repeat;
  background-position: 0 0;
}

/* Allow forms to function normally */
input, textarea, [contenteditable="true"] {
  user-select: text !important;
  -webkit-user-select: text !important;
  pointer-events: auto !important;
}
