/* Lift Waves D3 visualization — sparkline rows showing relationship lift over epochs.
   Consistent with chord diagram styles (same background, colors, tooltip, fonts). */

.lift-waves-container {
    background: #0a0a23;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.lift-waves-container svg {
    display: block;
}
.lift-waves-row:hover rect.lw-row-bg {
    fill: rgba(78, 205, 196, 0.06);
}
.lift-waves-tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(16, 12, 42, 0.96);
    border: 1px solid rgba(78, 205, 196, 0.5);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    color: #e0e0e0;
    max-width: 360px;
    z-index: 100001;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    line-height: 1.5;
}
