html,
body {
    height: 100%;
    margin: 0;
}

.sidebar {
    width: 250px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

    .sidebar .nav-link {
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 3px;
    }

        .sidebar .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.12);
        }
.sidebar-section-title {
    margin: 22px 16px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #8f969d;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.sidebar-link {
    display: block;
    padding: 9px 16px;
    color: #f1f3f5;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    margin: 2px 8px;
    transition: background-color .15s ease;
}

    .sidebar-link:hover {
        color: #ffffff;
        background: rgba(255,255,255,.08);
        text-decoration: none;
    }

    .sidebar-link:focus {
        color: #ffffff;
        text-decoration: none;
    }

.menu-title {
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
    padding-left: 15px;
    opacity: 0.6;
}

.main-content {
    margin-left: 250px;
    width: calc(100% - 250px);
    min-height: 100vh;
    background-color: #f5f6f8;
}

.top-header {
    height: 65px;
    background-color: white;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-dashboard {
    border: none;
    border-radius: 10px;
}
