/* Removes the gray background when scrolling on iOS */
body {
    background-color: #000000; /* Match your app background */
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* Important: Lets Flutter handle the scrolling */
}

/* Ensure the Flutter view takes up the whole screen */
flt-glass-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    /* Ensure no pointer events are blocked here */
    pointer-events: auto; 
}