/* 
The Telerik windoes uses a z-index of 10002.
The way Mudblazor calculates the z-index for their popover menu results in a significant lower z-value for popover menues than the z-value of the Telerik window.
To have a propper stacing of Mudblazor menues on top of Telerik windows a new value of 11000 was choosen. That is to ensure that we can visual stack other components inbetween the window and the context menu if needed.
*/
.mud-list-item-icon {
  min-width: 36px !important;
}

.vega-context-menu-item .mud-typography {
  display: flex;
  align-items: center;
}
.vega-context-menu-item .mud-typography .material-symbols-rounded {
  padding-right: 8px;
}

.vega-context-menu-popover {
  z-index: 11000 !important;
}

/*# sourceMappingURL=vegacontextmenu.css.map */
