/*
Theme Name: Fullscreen Blank Canvas
Theme URI: https://example.com/
Author: AI Assistant
Author URI: https://example.com/
Description: A completely blank canvas theme. It shows your content fullscreen with no header, footer, menus, titles, or sidebars. Ideal for full-page apps, custom landing pages, or canvas experiments.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blankcanvas
*/

/* Reset margins and allow the body to take up the full viewport */
html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Ensure WordPress block containers stretch fully if needed */
.wp-site-blocks,
.entry-content {
    width: 100%;
    height: 100%;
}