* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(239, 237, 237);
}
.commentary {
  width: 55%;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid rgb(231, 229, 229);
  background-color: rgb(242, 244, 245);
  border-radius: 6px;
}
.commentary-text {
  font-size: 1.1rem;
  color: rgb(66, 66, 66);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.over {
  width: 100%;
  display: flex;
  /* border: 2px solid black; */
  margin: 10px auto;
  max-width: 650px;
  gap: 20px;
  font-size: 1.13rem;
}
.btns {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 20px auto;
}
.btn button {
  background: transparent;
  /* border: transparent; */
  color: rgb(55, 76, 28);
  font-weight: bolder;
  font-size: 2rem;
  width: 65px;
  height: 65px;
  cursor: pointer;
  border-radius: 300px;
  transition: all linear 0.3s;
}
.btn button:hover {
  color: white;
  color: white;
  background-color: rgb(10, 91, 9);
  transform: scale(1.1);
}

.over-number {
  font-weight: bolder;
  font-size: 1.2rem;
}
.over {
  padding-bottom: 5px;
  /* border-bottom: 1px solid rgb(153, 151, 151); */
}

.cbtn {
  background: transparent;
  font-weight: bolder;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: rgb(55, 76, 28);
  border-radius: 300px;
  transition: all linear 0.3s;
  /* border: 2px solid rgb(55, 76, 28); */
}

.cbtn:hover {
  color: white;
  background-color: rgb(55, 76, 28);
}
p {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(55, 76, 28);
  font-family:'Times New Roman', Times, serif;
  letter-spacing: 1px;
}

.total-overs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0px;
}
.error{
  color:red;
  text-align: center;
  font-weight: bold;
}

.hide-error{
  display: none;
}
.commentary button{
    width: 100%;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}