/*
Theme Name: BallonManager Headless
Theme URI: https://example.com/ballon-manager
Author: BallonManager Team
Author URI: https://example.com
Description: Minimal headless WordPress theme for the BallonManager plugin. All frontend rendering is handled by the plugin. This theme intentionally contains no templates.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ballon-manager
*/

/* --------------------------------------------------
   Global Reset
-------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------
   Base Styles
-------------------------------------------------- */
html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #ffffff;
    color: #111111;
}

/* --------------------------------------------------
   Headless Notice (fallback)
-------------------------------------------------- */
.bm-headless-notice {
    display: none;
}

/* --------------------------------------------------
   Utility
-------------------------------------------------- */
.hidden {
    display: none !important;
}
