
#hscrollcontainer {
    position: relative;
    /*width: 1024px;*/
    /*max-width: 600px;*/
    height: 40px;

    border-radius: 25px;
    margin-top: 22px;
    margin-right: 24px;

    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;
    align-items: center;
}

.scrollbar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 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;
}


