/* Force the main container to take up more space */
.container {
    max-width: 95% !important;
    width: 95% !important;
}

/* Ensure the content inside isn't limited by internal theme padding */
.content {
    max-width: 100% !important;
    width: 100% !important;
}

/* Fix for larger screens (overriding the theme's hardcoded 640px/800px limits) */
@media only screen and (min-width: 800px) {
    .container {
        max-width: 90% !important;
    }
}



