.monitor-container {
  width: 80vw;
  height: 80vh;
  border-radius: 3px;
  background: #f8fafc;
  margin-left: 2px;
  margin-top: 20px;
  -webkit-box-shadow: 5px 10px 44px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 5px 10px 44px 6px rgba(0, 0, 0, 0.4);
}
.barr-options {
  position: absolute;
  width: inherit;
  height: 40px;
  background: #1e2a3b;
  color: aliceblue;
  display: flex;
  align-items: center;
  flex-direction: row;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.hidden {
  display: none !important;
}
.text-rigth {
  text-align: end;
}
.options {
  padding-left: 5px;
  width: 200px;
}
.w-100px {
  width: 100px;
}
.w-150px {
  width: 150px;
}
.w-330px {
  width: 330px;
}
.w-27 {
  width: 27%;
}
.w-auto {
  width: auto;
}
.text-title {
  color: #485a74;
  font-size: 40px;
  font-family: monospace;
  position: absolute;
  right: 0;
}
.body-monitor {
  background: rgb(240, 240, 240);
  padding-top: 40px;
}

.table-auto {
  table-layout: auto;
  border-collapse: collapse;
}
.table-auto thead {
  background: #8f8f8f;
  height: 40px;
  color: white;
  position: relative;
  display: block;
  width: 100%;
  overflow-y: scroll;
}
.table-auto th,.table-auto td {
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
}

/* tbody > tr:nth-child(even) {
  background: #f5f5f5;
}

tbody > tr:nth-child(odd) {
  background: #fff;
} */

.tr-odd{
    background: #fff;
}
.tr-even{
    background: #f5f5f5;
}
.table-scroll tbody{
    display: block; 
    position:relative;
    overflow-y:scroll;
  }
  .table-scroll tr{
    width: 80vw;
    display:flex;
  }
  
  .table-scroll td,.table-scroll th{
    flex-basis:100%;
    flex-grow:2;
    display: block;
    text-align:left;
  }
  .min-width{
    min-width: fit-content;
  }
  .min-width-125px{
    min-width: 125px;
  }
  .body-half-screen{
    max-height: 75vh;
  }
  .table-scroll tr:hover{
    background: #1e2a3b !important;
    color: #d8ca05 !important;
  }
  .alert-cell{
    background: #ffc107;
    color: #1e2a3b;
    border-radius: 3px;
    margin: 1px;
  }