html,
body {
  margin: 0;
  padding: 0;
  height: 500px;
}

canvas {
  display: block;
}

.btn {
  color: white;
  background-color: #38CC77;
  height: fit-content;
  width: 90px;
  padding: 2px;
  border: 2px solid black;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  text-align: center;
}

#container {
  height: 50px;
  width: 100%;
  border: red 1px solid;

}

#title {
  float: left;
  font-size: 36px;
  border: 1px solid black;
  width: 300px;
}

.container1 {
  float: left;
  height: 42px;
  width: 180px;
  border: 1px green solid;
}

.Directions {
  /* The div class that holds the button */
  float: left;
  height: 42px;
  width: 100px;
  border: 1px green solid;
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
}

#directions {
  /* The direction button itself */
  display: block;
  margin: auto;
  background-color: #4CAF50;
  color: white;
}

#directions:hover {
  background-color: #1e4720;
}


#box1 {
  margin-top: 5px;
  margin-left: 5px;

  float: left;
  width: 10px;
  height: 10px;
  background-color: green;
}

#legText-green {
  float: left;
  font-size: 12px;
  margin-top: 2px;
  margin-left: 5px;
}

#box2 {
  margin-top: 25px;
  margin-left: 5px;

  width: 10px;
  height: 10px;
  background-color: blue;
}

#legText-blue {
  float: left;
  font-size: 12px;
  margin-top: -13px;
  margin-left: 20px;
}



table {
  border: 1px black solid;
  border-collapse: collapse;
  width: 95%;
  table-layout: fixed;
  /* This gives more control over column widths */
}

/* Define specific widths for each column */
td:nth-child(1) {
  width: 10%;
}

/* Clear column */
td:nth-child(2) {
  width: 20%;
}

/* Narrow Numerator column */
td:nth-child(3) {
  width: 20%;
}

/* Denominator column */
td:nth-child(4) {
  width: 20%;
}

/* Decimal Number column */
td:nth-child(5) {
  width: 10%;
}

/* Is Repeat Frac column */
td:nth-child(6) {
  width: 20%;
}

td {
  padding: 0%;
  font-size: 12px;
  border: 1px solid black;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

button {
  font-size: 10px;
}

input {
  width: 100%;
  box-sizing: border-box;
  font-size: 10px;
}


#Div1 {
  font-size: 12px;
  width: 500px;
  border: 0px solid grey;
  height: auto;
  background-color: rgb(250, 248, 248);
}