.user-profile-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: transparent;
}
.user-profile-button .user-avatar {
        display: grid;
        align-items: center;
        justify-items: center;
        place-items: center;
        width: 40px;
        height: 40px;
        background-color: var(--blue-600);
        font-weight: 600;
        border-radius: 100%;
        color: var(--white);
    }

.user-profile-button .user {
        min-width: 0; /* allows children to shrink and apply ellipsis */
        overflow: hidden;
    }

.user-profile-button .user-name {
        font-weight: 600;
        color: var(--black);
    }
.user-profile-button .user-email {
        font-size: 14px;
        color: var(--text-gray-500);
    }

.user-profile-button .user-name,
    .user-profile-button .user-email {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
    }
