tr th {
    text-align: center;
    /* padding: 10px; */
    border:1px solid black;
  }
  
tr td {
  /* padding: 10px; */
  border:1px solid grey;
}

.progress {
  width: 80px;
  height: 80px;
  background: none;
  position: relative;
}

.progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}

.rounded-lg {
  border-radius: 1rem;
}

.text-gray {
  color: #aaa;
}

div.h4 {
  line-height: 1rem;
}

html,
body {
  /* position: fixed; */
  overflow: hidden;
}

#main {
  height: 100px;
  border: 1px solid gray;
  /* font-size: 1.5em; */
  font-weight: bold;
}
#left {
  float: left;
  width: 100px;
  height: 100%;
  border-right: 2px solid grey;
}
#right {
  text-align: center;
  width: 100%;
  height: 100%;
  margin-left: 2px;
  /* background-color:blue; */
}

