.interest-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    
}

.interest-table th,
.interest-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.interest-table th {
    color: #000;
}
.tooltip-container {
  position: relative;
  display: inline-block;
}

.question-icon {
  background: #007bff;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  border: none;
}

.tooltip-popup {
  font-weight:normal;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  padding: 10px 12px;
  background: #ffffff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

/* Show tooltip on hover */
.tooltip-container:hover .tooltip-popup {
  opacity: 1;
  visibility: visible;
}


/* If limited height, show below */
@media (max-height: 500px) {
  .tooltip-popup {
    bottom: auto;
    top: 125%;
  }
}

/* Tooltip arrow */
.tooltip-popup::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  bottom: -12px;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}

@media (max-height: 500px) {
  .tooltip-popup::after {
    border-color: transparent transparent #ffffff transparent;
    top: -12px;
    bottom: auto;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  }
}
.flex-container {
    display:flex;
    gap: 10px;
}
.flex-item {
    flex:1;
}

.modal-small-font {
  font-size: 14px;
}