﻿body {
    background: #f7f8fa;
}

.sidebar {
    width: 240px;
    background: #fff;
}

@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        bottom: 0;
        z-index: 1040;
        width: 240px;
        transition: left .2s
    }

        .sidebar.open {
            left: 0;
        }
}

.sidebar .nav-link {
    color: #333;
    border-radius: 12px;
}

    .sidebar .nav-link:hover {
        background: #f1f3f5;
    }

.card .table {
    margin-bottom: 0;
}
