.wml-background-particles {
    position: relative;
    width: 100%;
    overflow: hidden;
    pointer-events: auto;
    /* Enable mouse tracking for particle animation */
    /* Min-height is controlled via widget settings */
}

.wml-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 0;
}

.wml-particles-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    /* Ensure child elements are clickable */
    display: flex;
    flex-direction: column;
    /* Default centering, can be overridden by inline styles */
    align-items: center;
    justify-content: center;
}

.wml-particles-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}