body  {
    /* Fallback for older browsers */
    background-color: #f0f2f5; 
    
    /* The radial gradient recreating your SVG */
    background-image: radial-gradient(
        circle at 35% 35%, 
        #ffffff 0%, 
        #f7f9fa 40%, 
        #e9ecf0 100%
    );
    
    /* Ensures the background covers the entire element area smoothly */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: keeps background fixed while scrolling */
    
    /* Minimum height assurance if used on a wrapper */
    min-height: 100vh; 
}

