*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    min-height: 100dvh;
}
.header {
    display: flex;
    background-color: #7952b3 !important;
    height: 60px;
    align-items: center;
    padding: 0 40px;
}
.header .theme_button {
    position: absolute;
    right: 40px;
}

.dashboard {
    display: flex;    
}
.dashboard .left_menu_sidebar {
    width: 280px;
    position: fixed;
    left: 0;
    top: 60px;
    height: calc(100dvh - 60px);
    padding: 15px;
    overflow: hidden;
    overflow-y: auto;
}
.dashboard .right_content_sidebar {
    margin-left: 280px;
    width: calc(100% - 280px);
}

.bd-example>.nav+.nav, .bd-example>.alert+.alert, .bd-example>.navbar+.navbar, .bd-example>.progress+.progress {
    margin-top: 1rem;
}   

.bootstrap_logo a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
.bootstrap_logo a h2 {
    margin-bottom: 0;
    padding-left: 5px;
    position: relative;
    top: -2px;
    font-size: 24px;
}

.homePage h1 {
    margin-bottom: 10px;
}
.homePage a {
    color: #fff;
    text-decoration: none;
}