.result-value-large {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Courier New', monospace;
        }
        .change-positive {
            color: #198754;
        }
        .change-negative {
            color: #dc3545;
        }.author-bio{display:block}
        .change-neutral {
            color: #6c757d;
        }
        .comparison-bar-container {
            background-color: #e9ecef;
            border-radius: 20px;
            overflow: hidden;
            height: 28px;
            margin: 1rem 0;
            position: relative;
        }
        .comparison-bar {
            background-color: #0d6efd;
            height: 100%;
            width: 0%;
            transition: width 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 10px;
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .comparison-bar.second {
            background-color: #fd7e14;
        }
        .value-badge {
            font-size: 1rem;
            font-weight: 500;
            background: #f8f9fa;
            padding: 6px 12px;
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .insight-box {
            background: #f0f7ff;
            border-left: 5px solid #0d6efd;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
        }
        .formula-badge {
            font-family: 'Courier New', monospace;
            background: #2c3e50;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
        }
        .math-expr {
            font-family: 'Courier New', monospace;
            background: #f1f3f5;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
        }
        .example-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1rem 0;
        }
        .example-chip {
            background: #e9ecef;
            border-radius: 40px;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }
        .example-chip:hover {
            background: #cfe2ff;
            transform: translateY(-2px);
        }
        .viz-note {
            font-size: 0.8rem;
            color: #5e6f8d;
            margin-top: 0.25rem;
        }
        .ref-link {
            text-decoration: none;
        }
        .badge-eeat {
            background-color: #e9ecef;
            color: #1e466e;
        }
        .comparison-dual {
            display: flex;
            gap: 2rem;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .single-metric {
            flex: 1;
            text-align: center;
            background: white;
            border-radius: 20px;
            padding: 1rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        .metric-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6c757d;
        }
        .metric-number {
            font-size: 1.8rem;
            font-weight: 700;
        }
        hr {
            opacity: 0.4;
        }
        .validation-badge {
            background-color: #d1e7dd;
            color: #0f5132;
            border-radius: 30px;
            padding: 0.2rem 0.8rem;
            display: inline-block;
            font-size: 0.8rem;
        }