/* Scrollable iframe pages (Assets, Account) inside main app shell */
html {
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body {
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px) + 12px);
}
