/* MIR PostPilot — soft light scrollbars (page + nested) */

html {
  color-scheme: light;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 175, 91, 0.42) rgba(11, 18, 32, 0.05);
}

body,
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 175, 91, 0.42) rgba(11, 18, 32, 0.05);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: rgba(11, 18, 32, 0.04);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background: rgba(31, 175, 91, 0.38);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: rgba(23, 150, 76, 0.58);
  border: 2px solid transparent;
  background-clip: padding-box;
}

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