/* Basic container setup for the WebGL canvas */
.liquid-wave-container-3942 {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.liquid-wave-container-3942 img {
    visibility: hidden; /* Hide original image as canvas will replace it visually */
}

.liquid-wave-container-3942 canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let hover events pass to the container */
    z-index: 1;
}