@import url('/static/css/base.css');
@import url('/static/css/standard_elements.css');

body {
  background-color: black;
  color: red;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 3rem;
  margin: 0;
  padding: 1rem 0 1rem 0;
  overflow-x: hidden;
  overflow-y: hidden;
  --row-height: calc(100/6);
}

/* fields */
#containerMonitorName {
  font-size: 5rem;
  text-align: center;
}

#monitor{
  display: flex;
  flex-flow: column wrap;
  justify-content: space-around;
  width: 100vw;
  height: 100vh;
}

.row {
  display: flex;
  flex-flow: row;
  align-items: center;
  /* height: 16vh; */
}

.row canvas {
  width: 80%;
}

.row .trace {
  width: 80%;
  display: flex;
  flex-flow: row nowrap;
}

svg {
  position: relative;
  top:0;
}

.row div {
  width: 15%;
  text-align: center;
}

.vitalsLabel {
  font-size: 0.9rem;
}

.row #val2 {
  text-align: center;
}

#svgEcg {
  width: 100%;
}