body {
  background-color: rgb(159, 202, 239);
  font-family: Arial, Helvetica, sans-serif;
}

canvas {
  border: 1px solid black;
  border-radius: 50%;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    width: 90%;
    margin: auto;
    border-radius: 20px;
    padding: 5px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  table {
    margin: 15px;
  }


  button {
    background-color: rgb(191, 242, 242);
    border: 2px solid rgb(97, 116, 179);
    border-radius: 3px;
    padding: 7px;
    font-size: 15px;
  }

  button:hover {
    background-color: rgb(131, 226, 226);
  }

  #reset-btn {
    background-color: rgb(230, 171, 171);
    border: 2px solid rgb(130, 11, 11);
    border-radius: 3px;
  }

  #reset-btn:hover {
    background-color: rgb(227, 132, 132);
  }