﻿.serviceStatusBox {
    padding: 1rem;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.21);
}

    .serviceStatusBox.Green {
        background: #63D0A2;
    }

    .serviceStatusBox.Red {
        background-color: #FF4949;
    }

.job {
    border: 1px;
    background-color: white;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

        .job.Red i {
            color: #FF4949;
        }

        .job.Red .jobStatus {
            color: #FF4949;
        }

        .job.Green i {
            color: #63D0A2;
        }

        .job.Green .jobStatus {
            color: #63D0A2;
        }

.jobGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
    
    .jobGrid i {
        font-size: 45px;
        position:absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .jobGrid div:first-child {
        grid-area: 1 / 1 / 2 / 4;
        font-size: 1.15rem
    }

    .jobGrid div:nth-child(2) {
        grid-area: 1 / 4 / 2 / 7;
        font-size: 1.15rem;
    }

    .jobGrid div:last-child {
        grid-area: 1 / 7 / 2 / 8;
    }

.logsGrid {
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: .6vw;
    grid-row-gap: 0px;
    width: 100%;
    height: 5vw;
}

    .logsGrid .Error {
        background-color: #FF4949;
    }

    .logsGrid .Warning {
        background-color: #FAFF0E;
    }

    .logsGrid .Green {
        background-color: #63D0A2;
    }

.imagingGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    width: 100%;
}

.imagingCirle {
    width: 7rem;
    height: 7rem;
    line-height: 7rem;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    background: #343A40;
}

    .imagingCirle.Blue {
        box-shadow: 0px 0px 30px #486AE2;
    }

    .imagingCirle.Red {
        box-shadow: 0px 0px 30px #FF4949;
    }