I recently incorporated TippyJs into my FullCalendar setup for popovers, but I'm running into layout issues that seem to be related to zIndex. The popover is getting hidden behind the event wrapper and isn't clickable. I've attached a screenshot showcasing this problem. I'd really appreciate some guidance on how to ensure that the entire popover box appears above everything else. Thank you so much for your help! https://i.sstatic.net/6oQVW.png
tippy(arg.el, {
content: ReactDOMServer.renderToStaticMarkup(
//my html for popover
),
allowHTML: true,
placement: 'auto',
interactive: true,
theme: 'light',
zIndex: 9999,
});