/* Side bar seperate scrolling css */
* {
    scrollbar-width: thin;
}

html {
    height:100%;
}

#wrapper {
    height: 100% !important;
}

#accordionSidebar, #accordionSidebarRight {
    overflow-y: scroll;
    overflow-x: clip;
}

/*  Scroll bars */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0); */
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* background-color: rgba(0, 0, 0, 0.616); */
    -webkit-box-shadow: inset 0 0 6px rgb(50, 50, 50);
    box-shadow: inset 0 0 6px rgb(50, 50, 50);
}
