:root{
    --accent-color: silver;
    --heading-color: #9ACE9A;
}

h1, h2, h3, h4, h5, h6{
    color: #9ACE9A;
}

/* tooltip styling */
.info-icon {
    position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      text-align: center;
      border-radius: 50%;
      background-color: #9ACE9A;
      color: white;
      font-weight: bold;
      font-size: 14px;
      line-height: 20px;
      cursor: pointer;
    }
    
/* Tooltip text */
.info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.tooltip {
    position: absolute;
    bottom: 30px; /* Distance above the icon */
    width: 300px;
    left: 50%;
    max-height: 300px;
    transform: translateX(-50%) translateY(10px); /* Center the tooltip */
    padding: 8px 12px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    white-space: normal; /* Preserve line breaks */
    word-wrap: break-word; /* Break long words */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    overflow: visible;
}

/* Tooltip arrow */
.tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* end of tooltip styling */

#projections{
    width: 25%;
    overflow-x: auto;
}
