@charset "utf-8";
/* CSS Document */

    .popup-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    }

    .popup-text {
      visibility: hidden;
      width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px;
      position: absolute;
      z-index: 1;
      top: 125%; /* Position below the element */
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      transition: opacity 0.3s;
    }

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

    .popup-text::after {
      content: "";
      position: absolute;
      bottom: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #333 transparent transparent transparent;
    }
  
