/*
 * IWonnaP — Utils
 * Accessibility helpers, print styles, reduced-motion.
 */

/* ── Screen-reader only ──────────────────────────────── */
.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ── Print ───────────────────────────────────────────── */
@media print {
  .header,
  .footer,
  .left-sidebar,
  .right-sidebar,
  .emoji-bar,
  #notification-container,
  .action-btn,
  .create-cross {
    display: none !important;
  }
  .main {
    display: block;
    padding: 0;
  }
  .main-block {
    background: #fff;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  body { font-size: 12pt; }
  a { color: inherit; text-decoration: underline; }
}

/* ── Overflow helpers ────────────────────────────────── */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wrap-anywhere { overflow-wrap: anywhere; }

/* ── Loading cursor ──────────────────────────────────── */
.is-loading { cursor: wait; }

/* ── Display helpers ─────────────────────────────────── */
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
