/* Ensure the canvas covers the whole screen */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow interactions through the canvas */
    z-index: 9999; /* Ensure it overlays other content */
    display: none; /* Disable by default */
}
