body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ==================================   SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 220px;
    transition: all 0.3s;
    z-index: 1000;
}

#sidebar.minimized {
    width: 70px;
}

#sidebar.minimized .list-group a {
    text-align: center;
}

#sidebar .list-group-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}

#sidebar.minimized .list-group-item span {
    display: none;
}

#sidebar .sidebar-heading span {
    display: inline;
}

#sidebar.minimized .sidebar-heading span {
    display: none;
}



#content {
    padding-left: 240px;
    padding-right: 20px;
    transition: all 0.3s;
    width: 100%;
}

#sidebar.minimized~#content {
    padding-left: 90px;
}


.table th {
    text-align: center;
}

