header {
    background-color: white;
    box-shadow: 0px 4px 4px 0px #00000010;
}

.max-content {
    max-width: 1662px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    padding-right: 40px;
    padding-left: 348px;
    background-color: var(--textwhite);
    font-size: 20px;
    font-weight: 400;
    color: black;
}

.mobile-logo {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    width: 104px;
    height: 56px;
    gap: 16px;
    cursor: pointer;
}

.header-right img:hover {
    transform: scale(1.2);
}

.user-letter {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 100%;
    width: 56px;
    height: 56px;
}

.user-letter:hover {
    background-color: var(--lightgrey);
}

.user-letter h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 14px;
    color: #29ABE2;
    font-size: 24px;
}

.logout-menu {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: var(--darkblue);
    padding: 10px;
    border-radius: 15px 0px 15px 15px;
    z-index: 1000;
}

.logout {
    width: 150px;
    text-align: center;
    padding: 8px 16px;
}

.show-logout-mobile {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: var(--darkblue);
    padding: 10px;
    border-radius: 15px 0px 15px 15px;
    animation: show 0.5s ease 0s 1 normal forwards;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.exit-logout-mobile {
    animation: end 0.5s ease 0s 1 normal forwards;
}

@keyframes end {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.logout:hover {
    background-color: var(--bluegrey);
}

.logout a {
    width: 100%;
    font-weight: 400;
    color: var(--grey);
    cursor: pointer;
}