.gradual-blur-container {
  z-index: 10;
}

.gradual-blur-container > * {
  pointer-events: auto;
}

/* Ensure backdrop-filter is supported */
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .gradual-blur-container {
    /* Backdrop filter is supported */
  }
}

