.info-button-container {
  display: flex;
  align-items: center;
  padding: 10px;
  /* Vertically centers the content within the container */
}

.info-button {
  display: inline-block;
  justify-content: center;
  /* Horizontally centers the content (i.e., the 'i') */
  align-items: center;
  /* Vertically centers the content */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2980b9;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-left: 0px;
  font-style: normal;
  vertical-align: middle;
  text-align: center;
}

.info-bubble {
  background-color: #e2e8f0;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

.formula {
  display: flex;
  align-items: center;
  /* Center align items vertically */
  flex-wrap: wrap;
  justify-content: left;
  /* Center the formula horizontally */
}

.fraction {
  display: inline-flex;
  /* Use inline-flex for fractions */
  flex-direction: column;
  /* Stack numerator and denominator */
  align-items: center;
  /* Center align items within the fraction */
  margin: 0 5px;
}

.numerator,
.denominator {
  display: block;
  padding: 2px;
}

.numerator {
  border-bottom: 1px solid black;
  /* Horizontal line for the fraction */
}

.info-bubble table {
  width: 100%;
  border-collapse: collapse;
}

.info-bubble th, .info-bubble td {
  border: 1px solid #ddd;
  padding: 8px;
}

.info-bubble th {
  background-color: #f2f2f2;
  text-align: left;
}
