html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Flutter handles scroll internally */
    -webkit-overflow-scrolling: touch;
}

#flutter_container {
    height: 100%;
    width: 100%;
    overflow: auto;
}

/* Ensure emoji font loading */
@font-face {
    font-family: 'Noto Color Emoji';
    src: url('https://fonts.gstatic.com/s/notocoloremoji/v1/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFabsE4tq3luCC7p-aXxcn.0.woff2') format('woff2');
    font-display: block;
}

/* Apply emoji font to emoji characters */
.emoji {
    font-family: 'Noto Color Emoji', sans-serif;
}