/*
Theme Name: FTR Blank
Theme URI: https://ftrgames.com/
Author: FTR Games
Description: Minimal full-width blank theme for FTR Games plugin pages. No theme header, footer, sidebar, content width or visual styling is imposed on shortcode applications.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: ftr-blank
*/

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    background: #06070a;
}

#page,
.site,
.site-content,
.content-area,
.site-main,
.ftr-blank-main,
.ftr-blank-content,
.entry-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.ftr-blank-main,
.ftr-blank-content {
    display: block;
}

/* Do not let WordPress block alignment constrain shortcode applications. */
.ftr-blank-content > *,
.entry-content > * {
    max-width: none;
}

.wp-block-shortcode {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Keep the WordPress admin bar working normally. */
body.admin-bar {
    min-height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        min-height: calc(100vh - 46px);
    }
}
