<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Tooltip container */
.glossary-tooltip-container {
    position: relative;
    cursor: pointer;
    text-decoration: underline !important;
}

/* Tooltip overlay */
.glossary-tooltip-overlay {
    position: absolute;
    bottom: 100%;
    /* Position above the glossary term */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 300px;
    /* Adjust width as needed */
    /* max-height: 400px;
    overflow: auto; */
    visibility: hidden;
    opacity: 0;
    margin-bottom: -10px;
    transition: 0.2s;
    line-height: 1.6rem;
    font-weight: normal;
}

.glossary-tooltip-container.active .glossary-tooltip-overlay {
    opacity: 1;
    margin-bottom: 5px;
    visibility: visible;
}
span.glossary-tooltip-container p:hover {
    cursor: auto;
}

/* Tooltip arrow */
.glossary-tooltip-overlay::before {
    content: "";
    position: absolute;
    bottom: -11px;
    /* Position above the glossary term */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

/* Tooltip title */
.tooltip-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Tooltip content */
.tooltip-content p {
    margin-bottom: 10px;
}

/* Tooltip "Learn More" link */
.tooltip-learn-more {
    color: #007bff;
    text-decoration: none;
}

.tooltip-learn-more:hover {
    text-decoration: underline;
}</pre></body></html>