/* Ingress stretches across the full calculator width, not just the left column */
.section-sub {
    max-width: none;
}

.save-chart-container {
    height: 320px;
    padding: 24px 24px 16px;
}

.split-bar-wrap {
    margin-top: 20px;
    padding: 0 24px 24px;
}

.split-bar-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.split-bar-track {
    height: 10px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
}

.split-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 999px;
    transition: width 0.45s ease;
}

.split-bar-legend {
    display: flex;
    gap: 18px;
    margin-top: 8px;
    font-size: 0.76rem;
    color: var(--muted);
}

.split-bar-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}
