﻿.canvas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    color: white;
    padding: 10px;
    background-color: rgb(28, 119, 186);
}

.canvas-item {
    width: 400px;
    height: 200px;
    margin-bottom: 50px;
}

.space {
    margin-right: 1px;
}

.text-outline-white {
    color: red;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: white;
    text-stroke-width: 0.5px;
    text-stroke-color: white;
}

.metrics {
    width: 90%;
    margin-left: 55px;
}

    .metrics .col-1 {
        margin-right: -10px;
    }

    .metrics .col-6 {
        margin-left: 30px;
    }

.oswald-font {
    font-family: 'Oswald', sans-serif;
}

#chartContainerPrim {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

#chartContainerPrimLiveECGRoom {
    width: 100%;
    height: 93vh;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

#liveEcgFrameworkDiv {
    position: relative;
    width: 33.3333%;
    background-color: #1c77ba;
    float: left;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    #liveEcgFrameworkDiv {
        width: 100%;
    }

    #chartContainerPrim {
        overflow: auto;
    }
}

@media (max-height: 600px) {
    #liveEcgFrameworkDiv {
        height: 100% !important;
    }

    #chartContainerPrim {
        overflow: auto;
    }
}

.metrics-svg {
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
    width: 100%;
}


/*LiveECG*/

.chartContainer {
    padding: 14px;
    max-width: 1385px;
    min-height: 500px;
    background-color: white;
    box-sizing: border-box;
}

.chart-container {
    min-height: 400px;
    position: relative;
    width: 100%;
    height: 90%;
    overflow: hidden;
}

.chartcanvas {
    width: 100%;
    height: 100%;
    background-color: #1c77ba;
}

.metricssvg {
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    width: 100%;
}