
        .comparison-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .comparison-section {
                grid-template-columns: 1fr;
            }
        }

        .athlete-card {
            background: #f8f9fa;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
        }

        .athlete-card h3 {
            margin-top: 0;
            color: #495057;
            font-size: 1.2em;
            border-bottom: 2px solid #dee2e6;
            padding-bottom: 10px;
        }

        .winner {
            border-color: #28a745;
            background: #d4edda;
        }

        .winner h3 {
            color: #155724;
            border-bottom-color: #28a745;
        }

        .winner::before {
            content: "🏆 ";
        }

        .result-summary {
            background: white;
            border: 2px solid #0066cc;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .result-summary h2 {
            margin-top: 0;
            color: #0066cc;
        }

        .result-details {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
            margin-top: 20px;
        }

        .athlete-result {
            text-align: center;
        }

        .athlete-result .name {
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 10px;
        }

        .athlete-result .grade {
            font-size: 1.8em;
            color: #495057;
            font-weight: bold;
            margin: 5px 0;
        }

        .athlete-result .time {
            font-size: 1.2em;
            color: #6c757d;
        }

        .vs-divider {
            font-size: 2em;
            font-weight: bold;
            color: #adb5bd;
        }

        .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .stat-label {
            font-weight: 500;
            color: #6c757d;
        }

        .stat-value {
            font-weight: bold;
            color: #212529;
        }

        .margin-info {
            text-align: center;
            margin-top: 15px;
            padding: 10px;
            background: #fff3cd;
            border-radius: 4px;
            font-size: 0.95em;
        }

        .load-status {
            text-align: center;
            margin: 10px 0;
            font-weight: 500;
            min-height: 20px;
        }
