﻿* {
    margin: 0;
    padding: 0;
}

.CopCentreWrapper {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f6;
    padding-top:0.3em;
}

.divCopCentre {
    position: relative;
    height: fit-content;
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap:1em;
    flex-direction: column;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:auto;
}

.divDisplayPanel{
    border:1px solid purple;
    width:74vw;
}

.divSidePanel {
    box-shadow: var(--shadow-cop);
    background: #fff;
    width:25%;
}

.divTimelinePanel {
    border:0.06em solid #aaa;
    width:50%;
}

.divTopPanel {
    height: 3.5em;
    background: #fff;
    box-shadow: var(--shadow-cop);
    border-radius: 5px;
}

.divBodyPanel {
    height: 100%;
    display:flex;
    gap:1em;
}

.divMessagePanel {
    box-shadow: var(--shadow-cop);
    background: #fff;
    width:25%;
}

.divFooterPanel {
    height: 4em;
    border: 1px solid red;
}