.div-sidebar {
    
    position: fixed;
    top: 200px;
    left: 0;
    bottom: 0;
    overflow-y: scroll;
    width: 140px;
    margin-top: 20px;
    background-color: black;
    color: white;
    z-index: 200;
}

.div-sidebar-title {
    height: 30px;
    padding-top: 5px;
    background-color: lightgray;
    color: black;
    border-bottom: solid;
    border-width: .5px;
    border-color: black;
    font-weight: bolder;
    font-size: large;
    text-align: center;
    align-items: center;
}

.div-sidebar-link {
    height: 26px;
    display: flex;
    align-items: left;
    justify-content: center;
    padding-left: 3px;
    flex-direction: column;
    cursor:pointer;
    border-bottom: solid;
    border-width: .1px;
    border-color: lightgray;
    font-size: 11px;
    font-weight: lighter;
}

.div-sidebar-link:hoverNOTUSED {
    background-color: lightgray;
    color: black;
}