/* Barra de scroll — trilho azul escuro; polegar ciano/azul */

html {
  scrollbar-width: thin;
  scrollbar-color: #0ea5e9 #0f172a;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: #0f172a;
  border-radius: 9999px;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #22d3ee, #0ea5e9);
  border-radius: 9999px;
  border: 2px solid #0f172a;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38bdf8, #0284c7);
}

html::-webkit-scrollbar-corner {
  background: #0f172a;
}
