/* 텍스트 선택 강제 — @layer 밖에서 최고 우선순위 */

/* 선택 영역 하이라이트 */
::selection {
  background: rgba(124, 92, 252, 0.4) !important;
  color: #fff !important;
}
::-moz-selection {
  background: rgba(124, 92, 252, 0.4) !important;
  color: #fff !important;
}
body, body * {
  -webkit-user-select: text !important;
  user-select: text !important;
}
button, [role="button"], input, textarea, select,
.hlw-zoom-controls button {
  -webkit-user-select: auto !important;
  user-select: auto !important;
}
