/* popup.css */

/* The popup container */
#popup {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #888;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  padding: 20px;
  border-radius: 10px;
  z-index: 9999;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Show the popup */
#popup.show {
  display: block;
  animation: fadein 0.3s ease;
}

/* Fade-in animation */
@keyframes fadein {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.circle-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    line-height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    font-family: "Open Sans, Verdana, Calibri, Segoe UI, Roboto, Lato";
  }
  
  .headerIcon {
    font-family: "Open Sans, Verdana, Calibri, Segoe UI, Roboto, Lato";
    font-size: 12px;
    font-weight: normal;
  }

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    border: 2px solid #000000;
    position: absolute;
    z-index: 1;
    top: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: Trebuchet MS, Verdana, Arial;
    font-size: 14px;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you hover over the tooltip container */
.tooltip:hover .tooltiptext,
.tooltip:focus-within .tooltiptext {
  visibility: visible;
  opacity: 1;
}
