/* Subtle IA scrollbars — thin, low-contrast, no arrow buttons */

html,
body.ia-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
}

html::-webkit-scrollbar,
body.ia-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track,
body.ia-body::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body.ia-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
body.ia-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.24);
}

html::-webkit-scrollbar-button,
body.ia-body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

html::-webkit-scrollbar-corner,
body.ia-body::-webkit-scrollbar-corner {
  background: transparent;
}

/* Nested scroll areas on IA pages */
.ia-body * {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.ia-body *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.ia-body *::-webkit-scrollbar-track {
  background: transparent;
}

.ia-body *::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.ia-body *::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ia-body *::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.ia-body *::-webkit-scrollbar-corner {
  background: transparent;
}
