body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: bisque;
}

.container {
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}

.sideInfo {
  margin-left: 10px;
}

.myCanvas {
  border: 3px solid rgb(206, 52, 21);
  display: outside;
  border-radius: 2%;
}

#constants {
  line-height: 25px;
}
.constants {
  width: 55px;
}

.Btn {
  border-radius: 6px;
  padding: 4px 7px;
  background-color: rgba(255,196,8,75);
  border: none; /* Removes default border */
  cursor: pointer; /* Changes cursor to pointer on hover */

}

/* Hover effect */
.Btn:hover {
  /* background-color: #2980b9; Darker shade when hovered */
  background-color: rgba(206,2,36,50); /* Darker shade when hovered */
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3); /* Increases shadow */
  transform: translateY(-3px); /* Slight lift effect */
}
/* Click effect */
.Btn:active {
  transform: translateY(-1px); /* Slight press-down effect */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Reduces shadow */
}
#controls {
  margin-top: 5px;

  padding-left: 15%;
}
.instructions {
  margin-top: 10px;
  text-align:  center;
  padding-right: 50%;
  padding-left: 1%;
}
.BtnGroup {
  padding: 10px;
}

#outputBox {
  width: 100%;
  height: 70px;
  padding: 10px;
  box-sizing: border-box;
  /* font-size: 14px;
  line-height: 1.5; */
  border: 2px solid #ccc;
  border-radius: 4px;
  resize: none;
  overflow: hidden;
} 
#timeBox {
  width: 100px;
  height: 35px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 20px;
  
  border: 2px solid #ccc;
  border-radius: 5px;
  resize: none;
  overflow: hidden;
}
/* textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  border: 2px solid #ccc;
  border-radius: 4px;
  resize: none;
  overflow: hidden;
} */
.outputArea {
  width: 50%;
  max-width: 600px;
  max-height: 700px;
  min-width: 300px;
}