/* 웹 페이지 기본 설정 - 텍스트 선택 가능 */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100% !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  touch-action: manipulation !important;
  width: 100%;
  height: 100%;
}

/* 모든 요소에 텍스트 선택 허용 */
*, *::before, *::after {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
  box-sizing: border-box;
}

/* Flutter 앱 컨테이너 */
flt-glass-pane, flt-semantics-host, flt-text-editing-host {
  -webkit-user-select: text !important;
  user-select: text !important;
  touch-action: manipulation !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 캔버스 요소도 텍스트 선택 가능 */
canvas {
  -webkit-user-select: text !important;
  user-select: text !important;
}

/* 이미지는 드래그 가능하게 */
img {
  -webkit-user-drag: auto;
  -khtml-user-drag: auto;
  -moz-user-drag: auto;
  -o-user-drag: auto;
  user-drag: auto;
}

/* 링크와 버튼 */
a, button {
  cursor: pointer;
  -webkit-user-select: text !important;
  user-select: text !important;
}
