        .header {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header h1 {
            margin: 0;
        }

        .header .controls {
            background: transparent;
            padding: 0;
            margin: 0;
            box-shadow: none;
            border-radius: 0;
        }

        .header .controls label {
            font-size: 0.85rem;
            margin-right: 8px;
        }

        .header .controls .btn-group button {
            padding: 6px 12px;
            font-size: 0.85rem;
        }

        .stats-section {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .stats-section h2 {
            margin-top: 0;
        }

        .stats-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .stats-table th {
            text-align: center;
            padding: 12px 15px;
            border-bottom: 2px solid #e0e0e0;
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            width: 20%;
        }

        .stats-table th:first-child {
            text-align: left;
        }

        .stats-table td {
            padding: 20px 15px;
            border-bottom: 1px solid #f5f5f5;
            text-align: center;
            vertical-align: top;
        }

        .stats-table td:first-child {
            text-align: left;
        }

        .stats-table tr:last-child td {
            border-bottom: none;
        }

        .stats-table tbody tr:hover {
            background-color: #fafafa;
        }

        .harness-name {
            font-weight: 600;
            color: #333;
            font-size: 1.1rem;
        }

        .stat-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .stat-value {
            font-weight: 600;
            color: #333;
            font-size: 1.8rem;
            line-height: 1;
        }

        .stat-link {
            color: inherit;
            text-decoration: none;
            transition: all 0.2s;
            display: block;
        }

        .stat-link:hover .stat-value {
            color: #0060df;
        }

        .stat-secondary {
            font-size: 0.85rem;
            color: #999;
            white-space: nowrap;
        }

        .chart-container h2 {
            display: inline;
            margin-right: 10px;
        }

        .info-text {
            display: inline;
            font-size: 0.85rem;
            color: #666;
            margin: 0 0 15px 0;
        }

        .chart-header {
            margin-bottom: 15px;
        }

        .chart-container {
            min-height: 0;
        }

        .chart-container > div[id$="Chart"] {
            height: 450px;
        }