html, body {
    margin: 2px;
    padding: 0px;
    padding-right: 5px;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
}
#app {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
 
}

.max-height-container {
    height: calc(100vh - 100px) !important;
}

.scroll-container {
    height: calc(100vh - 100px) !important;
    overflow-y: auto !important; /* Ermöglicht vertikales Scrollen */
    overflow-x: hidden !important; /* Verhindert horizontales Scrollen */
}