/*
Theme Name: Shortcode Full Width Theme
Theme URI: https://example.com
Author: You
Description: Ultra minimal WordPress theme for full-width shortcodes without any spacing.
Version: 1.0
*/

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    width:100%;
    height:100%;
}

/* REMOVE WP DEFAULT SPACING */
body{
    overflow-x:hidden;
}

/* FULL WIDTH CONTENT */
.site,
.site-content,
.content-area,
main,
.page,
.entry-content{
    width:100%;
    margin:0;
    padding:0;
}

/* REMOVE BLOCK EDITOR MARGINS */
.wp-site-blocks,
.wp-block-group,
.wp-block{
    margin:0 !important;
    padding:0 !important;
    max-width:100% !important;
}

/* SHORTCODE SAFETY */
.shortcode-wrap{
    width:100%;
    margin:0;
    padding:0;
}
