﻿body {
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.cncsSplitContainer {
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: lightblue;
}

.cncsLeftPanel, .cncsRightPanel {
    position: absolute;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
   
}

.cncsLeftPanel {
    width: calc(50% - 5px);
    left: 0;
    background-color: #F9F8F7;
    z-index: 1;

}

.cncsRightPanel {
    width: calc(50% - 5px);
    right: 0;
    background-color: #F4F1F0;
    z-index: 1;
    
}

.cncsSplitter {
    position: absolute;
    width: 10px;
    height: 100%;
    left: calc(50% - 5px);
    top: 0;
    cursor: col-resize;
    background-color: #D0B4A0;
    z-index: 2;
}


/*body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.cncsSplitContainer {
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: lightblue;*/ /* pour tester */
/*}


.cncsSplitter {
    height: 100%;
    width: 10px;
    background-color: #ccc;
    position: absolute;
    left: calc(50% - 5px);
    top: 0;
    cursor: col-resize;
    z-index: 10;
}

.cncsLeftPanel, .cncsRightPanel {
    position: absolute;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
}

.cncsLeftPanel {
    width: calc(50% - 5px);
    left: 0;
    background-color: #f0f0f0;
}

.cncsRightPanel {
    width: calc(50% - 5px);
    right: 0;
    background-color: #e0e0e0;
}*/
