/******* Do not edit this file *******
Code Snippets Manager
Saved: Oct 27 2025 | 20:00:03 */
@charset "UTF-8";
/* Estilo geral da scrollbar (funciona no Chrome, Edge e Safari) */
::-webkit-scrollbar {
  width: 10px;
  /* largura da barra vertical */
  height: 10px;
  /* altura da barra horizontal */
}
::-webkit-scrollbar-track {
  background: #e0e0e0;
  /* cor do trilho */
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #40853D;
  /* cor verde da barra */
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  /* cria um "espaço" ao redor */
}
/* Quando o usuário passa o mouse sobre a barra */
::-webkit-scrollbar-thumb:hover {
  background-color: #2e642d;
}
/* Firefox */
* {
  scrollbar-width: thin;
  /* espessura */
  scrollbar-color: #40853D #e0e0e0;
  /* cor do thumb e do trilho */
}
