/*
Source - https://stackoverflow.com/a
Posted by avrahamcool, modified by community. See post 'Timeline' for change history
Retrieved 2025-12-04, License - CC BY-SA 4.0
*/

* {
    qmargin: 0;
    qpadding: 0;
}

html,
body,
.Container {
    height: 100%;
}

.Container:before {
    content: '';
    height: 100%;
    float: left;
}

.Header {
    margin-bottom: 10px;
}

.Content {
    position: relative;
    z-index: 1;
}

.Content:after {
    content: '';
    clear: both;
    display: block;
}

.Wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.Wrapper>div {
    height: 100%;
}

.LeftContent {
    overflow: auto;
}

.RightContent {
    width: 50%;
    float: right;
    margin-left: 10px;
}

