.sidebar-link-section-image {
    max-width: 16px;
    min-width: 16px;
}

.sidebar-logo {
    max-height: 36px;
}

.sidebar-link-section {
    display: flex;
    flex-direction: row;
}

.sidebar-links li {
    padding: 5px 8px;
    font-size: 14px;
    margin: 8px 0px;
}

.sidebar-expand-link {
    /* display: none; */
    margin-left: 10px;
}

.sidebar-expand-link a {
    color: rgb(82 82 82);
    text-decoration: none;
}

.sidebar-links-active {
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sidebar-links:not(.sidebar-links-active) li:hover {
    border-radius: 8px;
    background-color: #f3f3f3;
    text-decoration: none;
}



.sidebar-user-details-id {
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0px;
}


.sidebar-links ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.sidebar-col {
    flex-grow: 0;
    flex-basis: 210px;
    background-color: #F8F8F8;
    padding: 10px;
    border-right: 1.6px solid #ededed;
}

.sidebar-user-details {
    /* display: none; */
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0%;
    font-size: small;
}

@media only screen and (max-width: 830px) {

    .sidebar-col {
        position: fixed;
        height: 100%;
        width: 56px;
        left: 0;
        z-index: 99;
        background-color: #F8F8F8;
        padding-top: 10px;
        border-right: 1px #ededed;
    }

    .sidebar-link-section {
        justify-content: center;
    }
    
    .sidebar-col:hover {
        width: 215px;
        box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.1);
    }

    .sidebar-col:hover .sidebar-link-section {
        justify-content: left;
    }

    .sidebar-expand-link {
        display: none;
        margin-left: 10px;
    }
    
    .sidebar-user-details {
        display: none;

    }

    .sidebar-col:hover .sidebar-user-details {
        display: block;
    }
    
    .sidebar-col:hover .sidebar-expand-link {
        display: block;
    }

}
