/* ============================================================
   SCROLLBAR CUSTOMIZADA - Estilo VS Code Real
   ============================================================ */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Chrome, Edge, Safari e Opera */
*::-webkit-scrollbar {
    width: 10px;  /* Largura da barra vertical (estilo VS Code) */
    height: 10px; /* Altura da barra horizontal */
}

*::-webkit-scrollbar-track {
    background: transparent; /* Fundo invisível */
}

*::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15); /* Cor padrão discreta */
    border-radius: 0 !important;          /* Garante bordas 100% quadradas */
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25); /* Destaca ao passar o mouse */
}

*::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.4);  /* Quando clicada */
}

*::-webkit-scrollbar-corner {
    background: transparent; /* Canto onde as duas barras se encontram */
}