/*
 * Safe evidence-copy helpers.
 * The original visual design lives in styles.css. This file only supports
 * local-only behavior and deliberately avoids restyling the captured pages.
 */

[data-safe-form] input,
[data-safe-form] textarea,
[data-safe-form] select {
  user-select: text;
}

[data-safe-chat-message] {
  will-change: opacity, transform;
}

[data-safe-progress] {
  width: 0;
}

/* The captured Next.js app removed this intro after hydration. In the
 * offline evidence copy there is no hydration step, so do not let the
 * full-screen layer flash or intercept the first click on the home page. */
[data-safe-intro-loader] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-safe-chat-message] {
    animation-duration: 1ms !important;
  }
}
