img,
picture,
video,
canvas {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.momonchy-image-notice {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 99999;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  border: 2px solid #f2a7bf;
  border-radius: 999px;
  background: #fffdf9;
  color: #6b4a43;
  box-shadow: 0 6px 0 rgba(107, 74, 67, 0.13);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.momonchy-image-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

