body { background-color: #f8fafc; }
        
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-color: #00a0e9;
        }

        .data-badge {
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 99px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .badge-audit { background-color: #d1fae5; color: #065f46; border: 1px solid #10b981; }
        .badge-model { background-color: #dbeafe; color: #1e40af; border: 1px solid #3b82f6; }
        .badge-partner { background-color: #ffedd5; color: #9a3412; border: 1px solid #f97316; }

        .lineage-connector {
            border-left: 2px dashed #cbd5e1;
            margin-left: 1rem;
            padding-left: 1rem;
            padding-bottom: 1rem;
        }
