/* Global tooltip styling */

.scc-tooltip {
    display: inline;
    cursor: help;
    font-weight: bold;
    font-size: 14px;
    color: #0073aa;
    margin-left: 6px;
    user-select: none;
    transition: color 0.2s ease;
}

.scc-tooltip:hover {
    color: #005a87;
}

.scc-tooltip-box {
    display: none;
    position: fixed;
    background: #1d2327;
    color: #fff;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 280px;
    word-wrap: break-word;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: normal;
    pointer-events: none;
}

/* Small arrow pointing to trigger */
.scc-tooltip-box::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 12px;
    border: 5px solid transparent;
    border-bottom-color: #1d2327;
}
