.ew-wave-animation-background {
    position: relative;
    width: 100%;
}

.ew-wave-animation-wrapper {
    position: relative;
    width: 100%;
    height: 300px; /* Default height, controlled by widget */
    overflow: hidden;
}

.ew-wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Wave animation keyframes */
@keyframes ew-wave-move {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

/* Responsive design */
@media (max-width: 768px) {
    .ew-wave-animation-wrapper {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .ew-wave-animation-wrapper {
        height: 150px;
    }
}
