.tooltip-container {
  position: relative; /* Allows positioning of the tooltip text relative to this container */
  cursor: help; /* Changes the cursor to a question mark on hover */
}

.tooltip-text {
  visibility: hidden; /* Hides the tooltip text by default */
  opacity: 0; /* Makes the tooltip invisible */
  width: 200px; /* Adjust as needed */
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1; /* Ensures the tooltip appears above other content */
  bottom: 125%; /* Positions the tooltip above the question mark */
  left: 50%;
  margin-left: -100px; /* Centers the tooltip horizontally */
  transition: opacity 0.3s; /* Smooth fade-in effect */
}

.tooltip-container:hover .tooltip-text {
  visibility: visible; /* Makes the tooltip visible on hover */
  opacity: 1; /* Fades the tooltip in */
}
