::-webkit-scrollbar {
    display: block;
    width: 8px;
    height: 8px;
    
}

::-webkit-scrollbar-track {
    background: transparent;
    margin: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(150, 150, 150, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(150, 150, 150, 0.8);
}


html {
    scrollbar-width: thin;
    scrollbar-color: rgba(150, 150, 150, 0.5) transparent;
}

body {
    overflow-y: auto !important;
}

.custom-scrollbar-container {
    display: none !important;
} 