/* assets/css/style.css */
body {
    min-height: 100vh;
    background: #f4f7fb;
    color: #333;
}
#wrapper {
    min-height: 100vh;
}
#sidebar-wrapper {
    min-width: 240px;
    max-width: 240px;
    min-height: 100vh;
}
#sidebar-wrapper .list-group-item {
    border: 0;
    padding: 18px 20px;
}
#sidebar-wrapper .sidebar-heading {
    background: #111827;
}
#sidebar-wrapper .list-group-item:hover,
#sidebar-wrapper .list-group-item.active {
    background: #1f2937;
    color: #fff;
}
#page-content-wrapper {
    width: 100%;
}
.card-stats .card-body {
    min-height: 120px;
}
.table-responsive {
    min-height: 300px;
}
@media (max-width: 991px) {
    #sidebar-wrapper {
        position: fixed;
        left: -250px;
        transition: all .3s ease;
        z-index: 1000;
    }
    #sidebar-wrapper.active {
        left: 0;
    }
    #page-content-wrapper {
        padding-top: 1rem;
    }
}
