
#vscrollcontainer {
    position: relative;
    width: 46px;
    
    margin-top: 10px;
    margin-bottom: 10px;

    height: 344px;
    max-height: 1000px;
    border-radius: 25px;
    
    box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.7), 
    -10px -10px 20px rgba(255, 255, 255, 0.1); /* Neumorphic shadows */

    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vscrollbar {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 20%;
    
    background-color: #232323;
    border-radius: 25px;
    box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.7), 
    -10px -10px 20px rgba(255, 255, 255, 0.1); /* Neumorphic shadows */
        
    cursor: pointer;
}



/* Canvas*/
#html_canvas_vscroll
{
    background-color: #1e1e1e ;
}

#html_canvas_hscroll
{
    background-color: #1e1e1e;    
}
