/* Tamanho geral da barra */
::-webkit-scrollbar {
  width: 12px; /* vertical */
}

/* Parte "arrastável" (miolo/toggle) */
::-webkit-scrollbar-thumb {
  background-color: #2f5b44;
  border-radius: 10px;
  background-clip: content-box;
  height: 18px;
}

/* Parte do fundo da barra */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Parte do track não coberta pelo thumb */
::-webkit-scrollbar-track-piece {
  background: transparent;
}

/* Cantinho onde se cruzam as barras vertical/horizontal */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* Alça de redimensionamento (em elementos redimensionáveis) */
::-webkit-resizer {
  background: transparent;
}