/* Xvitreus background inside the small Live Proposals widget */
.vscan-live-widget{
  position: relative;          /* establish stacking context */
  overflow: hidden;            /* keep blur edges tidy */
}

/* Put the image above the widget background, below the text */
.vscan-live-widget::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/images/xvitreus.png"), url("/static/images/Xvitreus.png");
  background-size: cover;
  background-position: center;
  /* blur + dim; tweak to taste */
  filter: blur(8px) brightness(0.25);
  transform: scale(1.06);      /* hide blur edges */
  z-index: 1;                  /* <- key change */
  pointer-events: none;        /* never block clicks */
}

/* Ensure the widget’s text/badges sit above the image */
.vscan-live-widget > *{
  position: relative;
  z-index: 2;
}
