/* Custom Scrollbar Component - Versão ultra discreta */
/* Adicione este CSS em todas as páginas ou via JavaScript */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: #2A2E38;
  border-radius: 3px;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #3B82F6;
}

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

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2A2E38 transparent;
}

/* Para seleção de texto (opcional) */
::selection {
  background: #3B82F630;
  color: #3B82F6;
}

::-moz-selection {
  background: #3B82F630;
  color: #3B82F6;
}