/**
 * Weather Effect Block Styles
 * Creates a full-page weather effect overlay
 */

/* Hide preview box on live site, show weather effect */

.weather-block-preview {
    display: none !important;
}

.weather-block-live {
    display: block !important;
}

.weather-block {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
    visibility: hidden;
}

.weather-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    visibility: visible;
}

