/*
  This CSS will override MudBlazor's default snackbar background and box-shadow for all snackbars,
  ensuring only your custom background is visible. It targets the MudBlazor snackbar root and content.
*/
.mud-snackbar {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.mud-snackbar-content {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
