html {
  border-collapse: collapse;
  font-family: Poppins, sans-serif;
}

.container {
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
}

h1 {
  text-align: center;
}

.form {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

textarea {
  width: 100%;
}

button {
  display: block;
  margin: 10px 0;
}

table {
  margin: 20px 0;
}

.tooltip {
  position: relative;
  /* display: inline-block; */
  /* border-bottom: 1px dotted black; */
}

.tooltip .tooltiptext {
  visibility: hidden;
  /* width: 4rem; */
  background-color: rgba(0, 0, 0, 255);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 5%;
  left: 50%;
  margin-left: -2rem;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}