.wp-block-easy-architect-overlay-container {
    // Base styles
    position: absolute;
    inset: 0;
    z-index: 2;
    
    // Standard - no effect, transparent background
    &.is-style-standard {
        background: transparent;
    }
    
    // Classic - flat black with 25 alpha
    &.is-style-classic {
        background: rgba(0, 0, 0, 0.2);
    }
    
    // Linear - linear gradient from bottom to top
    &.is-style-linear {
        background: linear-gradient(to top,rgb(0,0,0,0.8) 0%,rgba(0,0,0,0) 25%);
    }
    
    // Vignette - radial gradient from center out
    &.is-style-vignette {
        background: radial-gradient(rgba(0,0,0,0) 66%,rgba(0,0,0,0.5) 100%);
    }
}