/**
 * UNARA — main viewport (right-edge page) scrollbar only.
 * Scoped to html; sidebar and inner panel scroll areas keep existing rules.
 */

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 168, 157, 0.34) var(--bg-panel, #071114);
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-panel, #071114);
  border-radius: 6px;
}

html::-webkit-scrollbar-thumb {
  background: rgba(15, 168, 157, 0.28);
  border-radius: 6px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(25, 191, 178, 0.42);
}
