/**
 * Minha Casa CRM — barra de rolagem padrão (igual ao dashboard index.html)
 * Sutil, 6px, canto direito do elemento que rola.
 */
:root {
  --mc-scrollbar-thumb: var(--border, var(--mc-border, #e0e0e0));
}

html {
  scrollbar-gutter: stable;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--mc-scrollbar-thumb);
  border-radius: 3px;
}

/* Firefox — auto (não usar "thin", que encolhe a barra) */
@supports (scrollbar-color: auto) {
  html {
    scrollbar-color: var(--mc-scrollbar-thumb) transparent;
  }
}
