 
        /* Binary specific styles */
        .binary-group {
            display: inline-block;
            width: 8em;
            text-align: center;
            margin-right: 0.25em;
        }
        
     /* Stats */
        .stats-container {
           // display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        
        .stat-box {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            flex: 1;
            min-width: 120px;
        }
        
        .stat-value {
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--primary-color);
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }