.dashboard {
    width: 100vw;
    height: 100vh;
}

.dashboard-topbar {
    width: 100vw;
    height: 70px;
    padding: 0 16px;

    background: #fff;
    border-bottom: #0003 1px solid;
}

.dashboard-topbar-brand {
    height: 50px;
}

.dashboard-content {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.dashboard-sidebar {
    width: 250px;
    height: calc(100vh - 70px);
    padding: 16px;

    background: #fff;
    border-right: #0003 1px solid;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.dashboard-sidebar .btn.btn-sm.btn-primary {
    width: 228px;
    margin-left: 0px!important;
}

.dashboard-center {
    width: calc(100vw - 250px);
}

.dashboard-padding {
    padding: 16px 32px;
}

.sidebar-nav {
    list-style-type: none;
    padding: 0;
}

.sidebar-nav-link {
    width: 228px;
    height: 40px;
    padding: 20px;
    border-radius: 8px;

    background: #0000;
    color: #3c3d3a;
    text-decoration: none;
 
    display: flex;
    justify-content: flex-start;
    align-items: center;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidebar-nav-link:hover {
    background: #0001;
}

.sidebar-nav-link em {
    margin-right: 8px;
}

.sidebar-nav .sidebar-nav-header {
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    padding-left: 16px;
}

.sidebar-nav .sidebar-nav-header-item {
    font-weight: 600;
}

.dashboard-center {
    overflow-y: auto;
    overflow-x: hidden!important;

    height: calc(100vh - 70px);
}