body {
    font-family: inter, sans-serif;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 89px;
    left: 0px;
    top: 0px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#responsiveJoinLogoDark{
    display: none;
    height: 39.05px;
    width: 32px;
    margin-left: 32px;
}

.title {
    font-size: 21px;
    margin-left: 348px;
}

.header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    margin-right: 36px;
}

.header-icons img {
    cursor: pointer;
}

.side-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 103px;
    position: fixed;
    width: 232px;
    height: 100vh;
    left: 0px;
    top: 0px;
    background: #2A3647;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.join-logo {
    margin: 66px 66px 0px 66px;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 65%;
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #CDCDCD;
    padding: 8px 57px;
    gap: 20px;
    width: 232px;
    height: 54px;
    text-decoration: none;
}

.nav-item:hover {
    background-color: #2A3D59;
    color: white !important;
    border-radius: 16px;
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
    width: 231px;
    color: #CDCDCD;
    cursor: pointer;
    text-decoration: none;
}

.bottom-nav-item:hover {
    color: #29ABE2 !important;
}

.active {
    background-color: #091931;
    color: white !important;
    pointer-events: none;
}

.profile-nav {
    position: absolute;
    right: 36px;
    top: 89px;
    padding: 10px;
    background-color: #2A3647;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px 0px 20px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.profile-nav a {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #CDCDCD;
    transition: all 100ms ease-in-out;
}

.profile-nav a:hover {
    background-color: #2A3D59;
}

#profile-nav-wrapper {
    height: 100vh;
    width: 100%;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
}