/**
 * description    : 아르고스 모니터링 페이지 css
 * fileName       : argosMornitoring
 */

.content{height: 82.7vh;}
.mainpanel{
    display: flex; justify-content: center;
    height: 82.2vh; margin-bottom: 3px;
    background-color: #ECF0F5;
}
.box-container{
    display: grid; gap: 0;
    grid-template-columns: repeat(5, 1fr);
    /*width: 75%; height: 96%;*/ /* 6열일 때 */
    width: 62%; height: 96%; padding: 1% 19%;
    background-color: #f2f4f7;  border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow-y: scroll;
}

/* ----------------- 열영상 박스 설정 ----------------- */
.video-box {
    text-align: center;
    border: 1px solid #707070;
    width: 100%; height: 100%;
}
.video-box:hover {
    border: 1px solid #1136c4;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 100;
}
.video-box .argos-title {
    display: flex; justify-content: center; align-items: center;
    margin: 0 ; font-size: 20px; border: 1px solid #707070;
    background-color: #ffffffbd;
}
.video-box .imageStatus{
    background-color: #75b6e3;
    width: 16px; height: 16px; margin-left: 5px;
    border-radius: 50%;
}
.video-box[device_num="0"]{color: #707070}
.video-box .thermal-image,
.video-box .thermal-image.noDevice{
    display: block; width: 100%; height: 84.4%;
    /*aspect-ratio: 4 / 3;*/
}
.video-box .thermal-image.noDevice{

}
.video-box .no-image{ display: none; position: relative; top: 48%; left: 0;}

.video-box .imageStatus.normal{ background-color: #34C759;}
.video-box .imageStatus.danger{ background-color: #c73434;}
.video-box .imageStatus.disconn{ background-color: #75b6e3;}




