/* Barra de Rolagem da Página Personalizada */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #3b3b3b;
}

::-webkit-scrollbar-thumb:vertical {
    background-color: #3BC117;
}

/* Apply custom scrollbar to both horizontal and vertical scrollbars */
::-webkit-scrollbar:horizontal {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: #3BC117;
}

body {
	overflow-x: hidden; /* Add this to prevent horizontal scrolling */
}