
html, body {
    width: 100%;
    min-height: 100dvh;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.header {
    display: flex;
    background-color: #667eea;
    height: 60px;
    align-items: center;
    padding: 10px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .right-arrow {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}
.header .right-arrow::after {
    content: "";
    background-image: url("../images/right-arrow.svg");
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: 30px;
    display: block;
    transform: rotate(89deg);
    position: relative;
    top: 1px;
    background-position: center;
}

.header .logo {
    height: 100%;
    width: 140px;
}

.header .theme_button {
    position: absolute;
    right: 40px;
}

.dashboard {
    display: flex;    
}

.dashboard .right_content_sidebar {
    margin-left: 280px;
    width: calc(100% - 280px);
}

.page_title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 90%;
    padding: 50px;
    margin: auto;
}

.container .container {
    max-width: 100%;
    padding: 0;
}

.section_title {
    font-size: 32px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 10px;
}

.separate_section {
    margin-bottom: 15px;
    padding-bottom: 20px;
    position: relative;
}
.separate_section:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.homePage {
    text-align: center;
}

.homePage h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 7px;
}