/* パターン①: 選択禁止 */
body.no-copy *:not(input):not(textarea):not([contenteditable="true"]) {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  /*cursor: not-allowed !important;*/
}

/* ================================
   コピー防止：選択は許可するが内容は守る
   ================================ */

/* デフォルトで選択可能（自然な操作感） */
body {
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}

/* 入力欄・フォーム・エディタなどももちろん選択可能 */
input, textarea, [contenteditable="true"] {
  user-select: text !important;
}

/* 特定の領域だけ完全禁止したい場合のクラス（任意） */
.no-copy {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
}

/* ================================
   SWELL風 コピー通知（中央フェード型）
   ================================ */
.mp-copy-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #745b5d; /* SWELLメインカラー #340e12 半透明 */
  color: #f2efe7;
  padding: 0.5em 0.5em;
  padding-left: 1em;
  font-size: 14px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
  pointer-events: none;
}

.mp-copy-toast.visible {
  opacity: 1;
}

