/*html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}*/

    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
    }
/* Update your styles.css or <style> block */


#compose-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /* 1. Use dvh instead of vh */
    height: 100vh;
    height: 100dvh;

    /* 2. Important: Ensure it handles safe areas (for notches) */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);

    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;

    /* 3. Help the canvas fill the container properly */
    overflow: hidden;
}


#compose-root.active {
    display: block;
    opacity: 1;
}

/* Class to hide the SEO content */
.seo-hidden {
    display: none !important;
}