/* Make sure the tool tipp of the app is always above the nav. */
#root {
    position: relative;
    z-index: 9999;
}
/* In standalone mode, it's sticky. 
    But when integrated here, it should use the full space. 
    And relative avoids issues with wrong z-order. */
.fixed-text-input {
    position: relative; 
}
footer { 
    padding: 0; 
}
div[class="no-print"] {
    display: none;
}