.data-point {
            font-family: monospace;
            background: #f1f3f5;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
        }
        .stat-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #e9ecef;
            transition: transform 0.1s ease;
        }
        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e66;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6c757d;
        }
        .method-badge {
            background-color: #eef2ff;
            border-radius: 30px;
            padding: 6px 12px;
            font-size: 0.8rem;
            display: inline-block;
            margin-right: 0.5rem;
        }
        .canvas-container {
            background: #fefefe;
            border-radius: 12px;
            border: 1px solid #dee2e6;
            padding: 10px;
            margin: 20px 0;
        }
        .data-tag {
            font-size: 0.75rem;
            font-family: monospace;
            word-break: break-all;
        }
        .formula-box {
            background: #f8f9fc;
            border-left: 4px solid #0d6efd;
            padding: 1rem;
            margin: 1.5rem 0;
            font-family: 'Courier New', monospace;
        }
        .example-pill {
            background: #e9ecef;
            border-radius: 50px;
            padding: 0.25rem 1rem;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.85rem;
        }
        .example-pill:hover {
            background: #0d6efd;
            color: white;
            transform: translateY(-2px);
        }
        .sort-preview {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 0.75rem;
            font-size: 0.85rem;
            overflow-x: auto;
            white-space: nowrap;
        }
        .badge-method {
            background: #2c3e66;
            color: white;
        }
        hr {
            opacity: 0.4;
        }