/* Hide Account Info (Avatar, Name, Email) */
div[class*="flex items-center gap-5"]>div[data-cy="user-menu-avatar"],
div[class*="flex items-center gap-5"]>div.text-xs {
    display: none !important;
}

/* Hide Plan Buttons Container ("Get a plan", "Create your team") */
div.mb-3.space-y-2 {
    display: none !important;
}

/* Hide Specific Buttons by data-cy attribute */
a[data-cy="getAPlan"],
button[data-cy="addMember"],
button[data-cy="popover-user-my-subscription"],
/* Plan & billing */
button[data-cy="popover-account"],
/* Settings */
button[data-cy="creatorProfile"],
/* Creator profile */
button[data-cy="logout-button"]

/* Log out */
    {
    display: none !important;
}

/* Hide divider lines to clean up the empty menu */
div.border-surface-border-alpha-0 {
    display: none !important;
}