/**
 * Viable website — custom styles
 *
 * Use this file for:
 * - Rules that are awkward in Tailwind alone (complex selectors, keyframes)
 * - Small overrides next to Tailwind CDN (this loads after Tailwind in the page)
 * - prefers-reduced-motion and other accessibility tweaks
 * - Future: @font-face, print styles, focus-visible polish
 *
 * Most layout/colors should stay as Tailwind classes in HTML unless you add a build step.
 */

@media (prefers-reduced-motion: reduce) {
  .product-tour-fade {
    transition-duration: 0ms !important;
  }
}

/* About nav: hide default details marker */
.nav-about-summary::-webkit-details-marker {
  display: none;
}
.nav-about-summary {
  list-style: none;
}

/* AASB compliance reference (scoped) */
#aasb-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  font-family: ui-sans-serif, system-ui, sans-serif;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  line-height: 1.6;
  color: #334155;
}

#aasb-container .aasb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

#aasb-container .aasb-table th,
#aasb-container .aasb-table td {
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

#aasb-container .aasb-table th {
  background-color: #f1f5f9;
  font-weight: 700;
  text-align: center;
}

#aasb-container .aasb-scroll-box {
  height: 600px;
  overflow-y: auto;
  padding: 1.75rem;
  background: #f8fafc;
  border-top: 2px solid #0f172a;
  font-family: Georgia, "Times New Roman", serif;
}

#aasb-container .section-header {
  display: block;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15em;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #334155;
  color: #0f172a;
}

#aasb-container .section-header:first-child {
  margin-top: 0;
}

#aasb-container .para-num {
  font-weight: 700;
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: #0f172a;
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

#aasb-container .sub-letter {
  display: block;
  margin-left: 1.25rem;
  margin-top: 0.35rem;
}

#aasb-container .sub-roman {
  display: block;
  margin-left: 2.5rem;
  margin-top: 0.25rem;
  font-size: 0.95em;
}

#aasb-container .aasb-scroll-box::-webkit-scrollbar {
  width: 10px;
}
#aasb-container .aasb-scroll-box::-webkit-scrollbar-track {
  background: #f1f5f9;
}
#aasb-container .aasb-scroll-box::-webkit-scrollbar-thumb {
  background: #64748b;
  border-radius: 5px;
}
