/* Style the app of data */
app-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    background: rgb(255, 255, 255);

    overflow: hidden;

    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;
}

    .AppBodyShareView > app-data {
        border-radius: var(--size-07);
    }

    @media screen and (max-width: 900px){
        .AppBodyShareView > app-data {
            border-radius: unset;
        }
    }