.container {
  display: flex;
}

.sectionA {
  width: 67.2%;
}

.row1 {
  width: 100%;
  display: flex;
  font-weight: 500;
}

.row1 .col1 {
  width: 16.5rem;
  background-color: #f7f7f7;
  border: 1px solid grey;
  padding: .5rem;
}

.row1 .col2 {
  background-color: #72bbef;
  width: 4rem;
  padding: 0.5rem;
  min-height: unset;
  height: auto;
}

.row1 .col3 {
  background-color: pink;
  width: 4rem;
  padding: 0.5rem;
  min-height: unset;
  height: auto;
  font-weight: 500;
}

.heading {
  display: flex;
  padding: 0.6rem 0.5rem;
  justify-content: space-between;
  background-color: #2c3e50d9;
  color: #ffffff;
  font-weight: 550;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  margin-top: 0.5rem;
}

.Result {
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem 0;
  margin-top: 0.5rem;
}

.Result div {
  background: #355e3b;
  color: #ffff33;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
  cursor: pointer;
}

.sectionB {
  width: 32.8%;
  padding-left: 0.3rem;
  margin-top: 0.4rem;

  margin-left: auto;
  font-weight: 700;
}

.section1 {
  display: flex;
  font-weight: 500;
  background-color: #2c3e50;
  color: white;
  justify-content: space-between;
  padding: 0.3rem 0.3rem;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.section2 {
  display: flex;
  background: #f7f7f7;
  padding: 3px 0.5rem;
  font-weight: bold;
  justify-content: space-between;
  font-size: 14px;
}

/* ================================= */

.videoBox {
  background-color: black;

  width: 100%;
  height: 24.7rem;
}

.tv {
  width: 100%;
  background-color: blue;
  display: flex;
  justify-content: end;
}

a {
  text-decoration: none;
  /* Removes underline */
  color: inherit;
  /* Inherits the text color from the parent element */
}

a:hover,
a:focus {
  text-decoration: none;
  /* Ensures no underline on hover or focus */
  color: inherit;
  /* Keeps the color consistent */
}