.auth-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #272B29;

    @media screen and (max-width: 960px) {
        flex-direction: column;
        padding: 16px;
    }
}

.auth-controls-wrapper .secondary-button {
    @media screen and (max-width: 960px) {
        width: 100%;
    }
}

.auth-buttons-wrapper {
    background: #272B29;
    display: flex;
    gap: 8px;
}

.auth-btn {
    font-family: Inter, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    width: 128px;
    height: 40px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 20px;
}

.primary-button {
    background-color: #61C59B;
    font-weight: 400;
}

.current-user-widget-desktop, .current-user-widget-mobile {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 20px;
    position: relative;
    cursor: pointer;
    color: var(--white);
    padding: 20px 0;
}

.current-user-widget-desktop {
    @media screen and (max-width: 960px) {
        display: none;
    }
}

.current-user-widget-desktop:hover .menu-wrapper {
    display: block;
}

.current-user-widget-mobile .expand-icon {
    transform: rotate(180deg);
}

.current-user-widget-desktop:hover .expand-icon {
    transform: rotate(0deg);
}

.current-user-widget-mobile {
    @media screen and (min-width: 960px) {
        display: none;
    }
    justify-content: center;
}

.current-user-widget-desktop .space {
    position: absolute;
    min-width: 225px;
    top: 0;
    left: -32px;
    background: transparent;
    width: 100%;
    height: 54px;
}

.current-user-widget-desktop .menu-wrapper {
    display: none;
    min-width: 225px;
    padding: 16px;
    position: absolute;
    top: 54px;
    left: -32px;
    z-index:999999;
}

.current-user-widget-desktop .menu {
    width: 225px;
    border-radius: 8px;
    text-align: left;
    background-color: #3A3A3A;
}

.current-user-widget-desktop .item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding:8px 16px;
    font-size: 13px;
    line-height: 18px;
    color: #ACACAC;
}

.current-user-widget-desktop .item a {
    display: block;
}

.dashboard-icon,
.services-overview,
.profile-icon,
.settings-icon,
.logout-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
}

.profile-icon {
    background: url("../../../../assets/icons/profile.svg") center / contain no-repeat;
}

.settings-icon {
    background: url("../../../../assets/icons/settings.svg") center / contain no-repeat;
}

.logout-icon {
    background: url("../../../../assets/icons/logout.svg") center / contain no-repeat;
}

.dashboard-icon {
    background: url("../../../../assets/icons/dashboard.svg") center / contain no-repeat;
}

.services-overview {
    background: url("../../../../assets/icons/services_overview.svg") center / contain no-repeat;
}
