.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer; /* Change cursor to indicate hover effect */
  font-size: 15.6px; /* Set font size */
  color: #000; /* Set text color */
}

.tooltip-text {
  visibility: hidden;
  width: 300px; /* Adjust width as needed */
  background-color: #212529;
  color: #000;
  text-align: left;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 100%; /* Position tooltip directly below the text */
  left: 50%; /* Center tooltip horizontally */
  transform: translateX(-50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s; /* Smooth opacity transition */
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}