body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#app-root {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;

    react-ui-view-adapter {
        height: 100%;
        width: 100%;
    }

    > [ui-view] {
        display: flex;
        width: 100%;
        height: 100%;

        &:has(> react-ui-view-adapter > div:empty) {
            display: none;
        }
    }
}
