
#depthGraph {
    width: 100% !important;
    height: 80% !important;
}

.container {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  background-color: #eeeeee;
  //padding: 5px;
  width: 100%;
  height: 25%;
}

div.Badge
{
    font-size: 40px;
    background-color: #ffffff;
    text-align: center;
    height: 60px;
    border-style: solid;
    border-color: #ccccee;
    border-width: 0.5px;
    border-radius: 5px;
    padding: 5px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.chart-container {
  position: relative;
  margin: auto;
  height: 90vh;
  width: 80vw;
}

@media (orientation: landscape) {
  div.Title
  {
    font-size: clamp(10px, 2vw, 20px); 
    line-height: 25px;
  }

  div.Value
  {
    font-size: clamp(10px, 4vw, 30px);    
    line-height: 35px;
  }

  .chart_container 
  { 
    width: 100%;
    height: 50%;

  }

}

@media (orientation: portrait) 
{
 div.Title
  {
    font-size: clamp(10px, 2vw, 20px); 
    line-height: 25px;
  }

  div.Value
  {
    font-size: clamp(10px, 4vw, 30px);    
    line-height: 35px;
  }
.chart_container 
  { 
    width: 100%;
    height: 50%;

  }

}
