.page-layout {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 960px;
    height: 100%;
/*     padding-top: 40px; */
    overflow: hidden;
    background: #f8f8f8;
}

.page-layout-header {
/*     position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px; */
    z-index: 1; /* To overflow first menu bar button */
}

.page-layout-body {
    flex: 1;
    min-height: 0;
}

.page-layout-content {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.page-layout-content-left {
    display: table-cell;
    position: relative;
    vertical-align: top;
    width: 40px;
    height: 100%;
    border-right: 1px solid #ccc;
    background: #ddd;
}

/* Set height to the wicket generated div */

.page-layout-content-left > div:first-child {
    height: 100%;
}

.page-layout-content-center {
    display: table-cell;
    position: relative;
    vertical-align: top;
    height: 100%;
}

/* Set height to the wicket generated div */

.page-layout-content-center > div:first-child {
    height: 100%;
}