body {
    margin: 0 auto;
    width: 100%;
    font-family: Inter;
    background-color: #F6F7F8;
}

.sideBar {
    background-color: rgb(42, 54, 71);
    width: 232px;
    height: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img_section_div {
    display: flex;
    flex-direction: column;
    gap: 128px;
}

.sideBarImg {
    height: 121px;
    width: auto;
}

.sideBarTask {
    display: flex;
    cursor: pointer;
    width: 232px;
    height: 46px;
    padding: 8px 56px 8px 56px;
    gap: 8px;
    align-items: center;
}

.sideBarTask:hover {
    background-color: #2A3D59;
}

.sideBarSectionList {
    height: 229px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sideBarLinksDiv {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.sideBarLinks {
    height: 35px;
    color: #A8A8A8;
    padding-left: 60px;
    width: 100%;
    justify-content: flex-start;
}

.sideBarLinks:hover {
    color: #29ABE2;
    font-weight: 700;
}

.sideBarClickText {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #CDCDCD;
    text-decoration: none;
}

.topBar {
    height: 96px;
    padding-left: 116px;
    padding-right: 40px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    background-color: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 232px;
    right: 0;
    z-index: 10;
}

.headerText {
    font-size: 20px;
}

.mainPageRight {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 232px;
}

.topBarIcons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 104px;
    height: 56px;
    gap: 16px;
}

.userIcon {
    height: 56px;
    width: 56px;
    border-radius: 50px;
    border-style: solid;
    border-color: #2A3647;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 3px;
    font-size: 24px;
}

.userIcon:hover {
    background-color: rgba(12, 46, 98, 0.12);

}

.contentMainPage {
    background-color: #F6F7F8;
    height: 100%;
    padding-top: 96px;
    padding-left: 232px;
}

.cursor {
    cursor: pointer;
}

.questionIcon {
    width: 20px;
    height: 20px;
}

.questionIcon:hover {
    height: 24px;
    width: 24px;
}

.tabActive {
    background-color: #091931;
}

.tabActive:hover {
    background-color: #091931 !important;
}

.drop_down_container {
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
}

.d-none {
    display: none;
}

@media(max-width: 1400px) {

    .sideBar,
    .headerText {
        display: none;
    }

    .topBar {
        width: 100%;
        top: 0;
        left: 0;
        padding: 20px 16px;
        height: 80px;
    }

    .topBar img {
        display: flex;
        width: 32px;
        height: 39px;
    }

    .topBarIcons img {
        display: none;
    }

    .contentMainPage {
        padding-left: 0;
        display: flex;
        justify-content: center;
        padding-top: 80px;
    }
}

@media (max-width: 600px) {

    .userIcon {
        height: 44px;
        width: 44px;
    }


    .sideBarClickText {
        font-size: 14px;
    }
}