.orbit-canvas {
            width: 100%;
            max-width: 500px;
            background-color: #f8fafc;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin: 1rem auto;
            display: block;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1rem;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 0.5rem 0;
            font-size: 0.85rem;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        .legend-color.orange { background-color: #fd7e14; }
        .legend-color.blue { background-color: #0d6efd; }
        .legend-color.dark { background-color: #212529; }
        .velocity-arrow {
            width: 24px;
            height: 2px;
            background: #dc3545;
            position: relative;
        }
        .accuracy-badge {
            font-size: 0.85rem;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            background-color: #198754;
            color: white;
            font-weight: 600;
        }
        .team-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid #6f42c1;
        }
        .citation-box {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 1rem;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            margin: 1rem 0;
        }
        .validation-box {
            background-color: #e8f5e8;
            border: 1px solid #2e7d32;
            border-radius: 6px;
            padding: 1rem;
            margin: 1.5rem 0;
        }
        .version-info {
            font-size: 0.8rem;
            color: #6c757d;
            text-align: center;
            margin-top: 1rem;
        }