{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "insurance-eligibility-checker",
  "title": "Insurance Eligibility Checker",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/insurance-eligibility-checker/InsuranceEligibilityChecker.tsx",
      "content": "'use client'\n\nimport * as React from 'react'\nimport {\n  Activity,\n  AlertCircle,\n  Building2,\n  CheckCircle2,\n  CreditCard,\n  FileCheck,\n  FileText,\n  Hospital,\n  Info,\n  Pill,\n  RefreshCw,\n  ShieldCheck,\n  Stethoscope,\n  User,\n} from 'lucide-react'\nimport { cn } from '@/lib/utils'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'\nimport { Progress } from '@/components/ui/progress'\nimport { Separator } from '@/components/ui/separator'\nimport { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'\n\nexport function InsuranceEligibilityChecker({ className }: { className?: string }) {\n  const [isVerifying, setIsVerifying] = React.useState(false)\n  const [lastVerifiedText, setLastVerifiedText] = React.useState('Active Coverage · Verified Today at 09:15 AM')\n\n  const handleReverify = () => {\n    if (isVerifying) return\n    setIsVerifying(true)\n    setTimeout(() => {\n      setIsVerifying(false)\n      const now = new Intl.DateTimeFormat('en-US', {\n        hour: '2-digit',\n        minute: '2-digit',\n        second: '2-digit',\n        hour12: true,\n      }).format(new Date())\n      setLastVerifiedText(`Active Coverage · Verified Real-time at ${now}`)\n    }, 750)\n  }\n\n  return (\n    <div\n      data-slot=\"insurance-eligibility-checker\"\n      className={cn('bg-background text-foreground w-full space-y-6', className)}\n    >\n      {/* Header: Patient Demographics & Real-time Eligibility Status */}\n      <header className=\"bg-card border-border rounded-xl border p-5 shadow-xs sm:p-6\">\n        <div className=\"flex flex-col gap-6\">\n          {/* Top Row: Title & Real-time Action */}\n          <div className=\"flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between\">\n            <div className=\"space-y-1\">\n              <div className=\"flex items-center gap-2\">\n                <div className=\"bg-primary/10 text-primary border-primary/20 flex size-8 shrink-0 items-center justify-center rounded-lg border\">\n                  <ShieldCheck className=\"size-4\" />\n                </div>\n                <h1 className=\"text-foreground text-xl font-bold tracking-tight sm:text-2xl\">\n                  Insurance Eligibility & Benefits Verifier\n                </h1>\n              </div>\n              <p className=\"text-muted-foreground text-xs sm:text-sm\">\n                Real-time EDI 270/271 electronic benefit eligibility inquiry, deductible accumulators, and coverage\n                limits.\n              </p>\n            </div>\n\n            <div className=\"flex flex-wrap items-center gap-2\">\n              <Button\n                variant=\"outline\"\n                size=\"sm\"\n                disabled={isVerifying}\n                className=\"gap-1.5 text-xs font-medium\"\n                onClick={handleReverify}\n              >\n                <RefreshCw className={cn('size-3.5', isVerifying && 'text-primary animate-spin')} />\n                <span>{isVerifying ? 'Verifying EDI 270...' : 'Re-verify Real-time'}</span>\n              </Button>\n            </div>\n          </div>\n\n          <Separator />\n\n          {/* Patient & Primary Payer Profile Details */}\n          <div className=\"grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4\">\n            {/* Patient Demographics */}\n            <div className=\"space-y-1\">\n              <div className=\"text-muted-foreground flex items-center gap-1.5 text-xs font-medium\">\n                <User className=\"size-3.5\" />\n                <span>Patient Name & DOB</span>\n              </div>\n              <p className=\"text-foreground text-sm font-semibold\">David Chen</p>\n              <p className=\"text-muted-foreground text-xs tabular-nums\">DOB: 1978-10-14 (48 yrs · Male)</p>\n            </div>\n\n            {/* Primary Payer / Plan */}\n            <div className=\"space-y-1\">\n              <div className=\"text-muted-foreground flex items-center gap-1.5 text-xs font-medium\">\n                <Building2 className=\"size-3.5\" />\n                <span>Insurance Payer & Plan</span>\n              </div>\n              <p className=\"text-foreground text-sm font-semibold\">BlueCross BlueShield</p>\n              <p className=\"text-muted-foreground text-xs\">PPO - Choice Plus Network</p>\n            </div>\n\n            {/* Member & Group ID */}\n            <div className=\"space-y-1\">\n              <div className=\"text-muted-foreground flex items-center gap-1.5 text-xs font-medium\">\n                <CreditCard className=\"size-3.5\" />\n                <span>Member & Policy ID</span>\n              </div>\n              <p className=\"text-foreground font-mono text-sm font-semibold tabular-nums\">#BCBS-98421094</p>\n              <p className=\"text-muted-foreground text-xs tabular-nums\">Group: GRP-88204-01 · Plan #902</p>\n            </div>\n\n            {/* Verification Status Badge */}\n            <div className=\"space-y-1.5\">\n              <div className=\"text-muted-foreground flex items-center gap-1.5 text-xs font-medium\">\n                <Activity className=\"size-3.5\" />\n                <span>Verification Status</span>\n              </div>\n              <div>\n                <Badge\n                  wrap\n                  variant=\"outline\"\n                  className=\"border-success/30 bg-success/10 text-success gap-1.5 text-xs font-medium\"\n                >\n                  <span className=\"bg-success size-1.5 animate-pulse rounded-full\" />\n                  <span>{lastVerifiedText}</span>\n                </Badge>\n              </div>\n              <p className=\"text-muted-foreground text-xs tabular-nums\">\n                Trace: EDI-271-99842 · Effective: Jan 01, 2026 – Dec 31, 2026\n              </p>\n            </div>\n          </div>\n        </div>\n      </header>\n\n      {/* 4 Primary Benefit Cards */}\n      <section className=\"grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4\">\n        {/* Card 1: Individual Deductible */}\n        <Card className=\"relative overflow-hidden\">\n          <CardHeader className=\"pb-2\">\n            <div className=\"flex items-center justify-between\">\n              <CardTitle className=\"text-muted-foreground text-xs font-medium tracking-wider uppercase\">\n                Individual Deductible\n              </CardTitle>\n              <Badge wrap variant=\"secondary\" className=\"text-xs font-normal\">\n                In-Network\n              </Badge>\n            </div>\n            <div className=\"mt-2 space-y-1\">\n              <div className=\"flex items-baseline gap-1.5\">\n                <span className=\"text-foreground text-2xl font-bold tracking-tight tabular-nums\">$1,200.00</span>\n                <span className=\"text-muted-foreground text-xs font-normal tabular-nums\">/ $2,500.00 met</span>\n              </div>\n              <CardDescription className=\"text-xs\">\n                <strong className=\"text-foreground font-medium tabular-nums\">$1,300.00</strong> remaining in plan year\n              </CardDescription>\n            </div>\n          </CardHeader>\n          <CardContent className=\"pt-0\">\n            <div className=\"space-y-1.5\">\n              <div className=\"flex items-center justify-between text-xs\">\n                <span className=\"text-muted-foreground\">Accumulator Met</span>\n                <span className=\"text-foreground font-semibold tabular-nums\">48%</span>\n              </div>\n              <Progress value={48} className=\"h-2\" />\n              <p className=\"text-muted-foreground pt-1 text-xs tabular-nums\">\n                Family Deductible: $2,400.00 / $5,000.00 met (48%)\n              </p>\n            </div>\n          </CardContent>\n        </Card>\n\n        {/* Card 2: Out-of-Pocket Maximum */}\n        <Card className=\"relative overflow-hidden\">\n          <CardHeader className=\"pb-2\">\n            <div className=\"flex items-center justify-between\">\n              <CardTitle className=\"text-muted-foreground text-xs font-medium tracking-wider uppercase\">\n                Out-of-Pocket Maximum\n              </CardTitle>\n              <Badge wrap variant=\"secondary\" className=\"text-xs font-normal\">\n                Annual Max\n              </Badge>\n            </div>\n            <div className=\"mt-2 space-y-1\">\n              <div className=\"flex items-baseline gap-1.5\">\n                <span className=\"text-foreground text-2xl font-bold tracking-tight tabular-nums\">$2,800.00</span>\n                <span className=\"text-muted-foreground text-xs font-normal tabular-nums\">/ $6,000.00 met</span>\n              </div>\n              <CardDescription className=\"text-xs\">\n                <strong className=\"text-foreground font-medium tabular-nums\">$3,200.00</strong> until 100% plan\n                liability\n              </CardDescription>\n            </div>\n          </CardHeader>\n          <CardContent className=\"pt-0\">\n            <div className=\"space-y-1.5\">\n              <div className=\"flex items-center justify-between text-xs\">\n                <span className=\"text-muted-foreground\">Accumulator Met</span>\n                <span className=\"text-foreground font-semibold tabular-nums\">46%</span>\n              </div>\n              <Progress value={46} className=\"h-2\" />\n              <p className=\"text-muted-foreground pt-1 text-xs tabular-nums\">\n                Includes deductibles, copays & Rx coinsurance\n              </p>\n            </div>\n          </CardContent>\n        </Card>\n\n        {/* Card 3: Primary Care Copay */}\n        <Card className=\"relative overflow-hidden\">\n          <CardHeader className=\"pb-2\">\n            <div className=\"flex items-center justify-between\">\n              <CardTitle className=\"text-muted-foreground text-xs font-medium tracking-wider uppercase\">\n                Primary Care Copay\n              </CardTitle>\n              <Badge\n                wrap\n                variant=\"outline\"\n                className=\"border-success/30 bg-success/10 text-success text-xs font-medium\"\n              >\n                No Deductible\n              </Badge>\n            </div>\n            <div className=\"mt-2 space-y-1\">\n              <div className=\"flex items-baseline gap-1.5\">\n                <span className=\"text-foreground text-2xl font-bold tracking-tight tabular-nums\">$25.00</span>\n                <span className=\"text-muted-foreground text-xs font-normal\">copay</span>\n              </div>\n              <CardDescription className=\"text-xs\">No deductible required prior to copay benefit</CardDescription>\n            </div>\n          </CardHeader>\n          <CardContent className=\"pt-0\">\n            <div className=\"border-border/60 bg-muted/30 rounded-lg border p-2.5 text-xs\">\n              <div className=\"flex items-center gap-1.5\">\n                <Stethoscope className=\"text-primary size-3.5 shrink-0\" />\n                <span className=\"text-foreground font-medium\">Designated PCP In-Network</span>\n              </div>\n              <p className=\"text-muted-foreground mt-1 text-xs\">$0.00 copay for annual preventive wellness checkups</p>\n            </div>\n          </CardContent>\n        </Card>\n\n        {/* Card 4: Specialist Copay */}\n        <Card className=\"relative overflow-hidden\">\n          <CardHeader className=\"pb-2\">\n            <div className=\"flex items-center justify-between\">\n              <CardTitle className=\"text-muted-foreground text-xs font-medium tracking-wider uppercase\">\n                Specialist Copay\n              </CardTitle>\n              <Badge\n                wrap\n                variant=\"outline\"\n                className=\"border-warning/30 bg-warning/10 text-warning text-xs font-medium\"\n              >\n                PA Required\n              </Badge>\n            </div>\n            <div className=\"mt-2 space-y-1\">\n              <div className=\"flex items-baseline gap-1.5\">\n                <span className=\"text-foreground text-2xl font-bold tracking-tight tabular-nums\">$50.00</span>\n                <span className=\"text-muted-foreground text-xs font-normal\">copay</span>\n              </div>\n              <CardDescription className=\"text-xs\">Prior authorization required for select procedures</CardDescription>\n            </div>\n          </CardHeader>\n          <CardContent className=\"pt-0\">\n            <div className=\"border-border/60 bg-muted/30 rounded-lg border p-2.5 text-xs\">\n              <div className=\"flex items-center gap-1.5\">\n                <Hospital className=\"text-primary size-3.5 shrink-0\" />\n                <span className=\"text-foreground font-medium\">Direct Specialist Access</span>\n              </div>\n              <p className=\"text-muted-foreground mt-1 text-xs\">No primary care physician (PCP) referral required</p>\n            </div>\n          </CardContent>\n        </Card>\n      </section>\n\n      {/* Detailed Coverage Category Breakdown Table */}\n      <Card>\n        <CardHeader>\n          <div className=\"flex flex-col gap-2 sm:flex-row sm:items-center sm:justify-between\">\n            <div className=\"space-y-1\">\n              <div className=\"flex items-center gap-2\">\n                <FileCheck className=\"text-primary size-4\" />\n                <CardTitle className=\"text-base sm:text-lg\">Detailed Coverage Category Breakdown</CardTitle>\n              </div>\n              <CardDescription className=\"text-xs sm:text-sm\">\n                Schedule of in-network vs out-of-network patient cost-sharing, authorization rules, and annual benefit\n                limits.\n              </CardDescription>\n            </div>\n            <Badge wrap variant=\"outline\" className=\"text-muted-foreground w-fit text-xs font-normal\">\n              Updated via ANSI 835/271\n            </Badge>\n          </div>\n        </CardHeader>\n        <CardContent className=\"p-0\">\n          <div className=\"overflow-x-auto\">\n            <Table>\n              <TableHeader>\n                <TableRow className=\"bg-muted/40\">\n                  <TableHead className=\"min-w-[220px] font-semibold\">Service Category</TableHead>\n                  <TableHead className=\"min-w-[170px] font-semibold\">In-Network Coverage</TableHead>\n                  <TableHead className=\"min-w-[170px] font-semibold\">Out-of-Network Coverage</TableHead>\n                  <TableHead className=\"min-w-[190px] font-semibold\">Prior Authorization (PA)</TableHead>\n                  <TableHead className=\"min-w-[200px] text-right font-semibold\">Annual Limits & Copay</TableHead>\n                </TableRow>\n              </TableHeader>\n              <TableBody>\n                {/* Row 1: Preventive Care */}\n                <TableRow>\n                  <TableCell className=\"align-top font-medium\">\n                    <div className=\"flex items-start gap-2.5\">\n                      <div className=\"border-success/20 bg-success/10 text-success mt-0.5 flex size-7 shrink-0 items-center justify-center rounded-md border\">\n                        <ShieldCheck className=\"size-4\" />\n                      </div>\n                      <div className=\"space-y-0.5\">\n                        <p className=\"text-foreground text-sm font-semibold\">Preventive Care</p>\n                        <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                          Annual wellness exams, biometric screenings, routine adult & pediatric immunizations,\n                          mammograms.\n                        </p>\n                      </div>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-1\">\n                      <span className=\"text-foreground text-sm font-bold tabular-nums\">100% covered</span>\n                      <Badge\n                        wrap\n                        variant=\"outline\"\n                        className=\"border-success/30 bg-success/10 text-success block w-fit text-xs font-normal\"\n                      >\n                        $0 Deductible & Copay\n                      </Badge>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-0.5\">\n                      <span className=\"text-foreground text-sm font-medium tabular-nums\">60% of UCR</span>\n                      <p className=\"text-muted-foreground text-xs\">Subject to out-of-network deductible</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"text-success flex items-center gap-1.5 text-xs\">\n                      <CheckCircle2 className=\"size-3.5 shrink-0\" />\n                      <span className=\"font-medium\">Not Required</span>\n                    </div>\n                    <p className=\"text-muted-foreground mt-0.5 text-xs\">Direct access without pre-certification</p>\n                  </TableCell>\n                  <TableCell className=\"text-right align-top\">\n                    <div className=\"space-y-0.5\">\n                      <p className=\"text-foreground text-sm font-bold tabular-nums\">$0.00 copay</p>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">Unlimited annual wellness visits</p>\n                    </div>\n                  </TableCell>\n                </TableRow>\n\n                {/* Row 2: Specialist Visits */}\n                <TableRow>\n                  <TableCell className=\"align-top font-medium\">\n                    <div className=\"flex items-start gap-2.5\">\n                      <div className=\"bg-primary/10 text-primary border-primary/20 mt-0.5 flex size-7 shrink-0 items-center justify-center rounded-md border\">\n                        <Stethoscope className=\"size-4\" />\n                      </div>\n                      <div className=\"space-y-0.5\">\n                        <p className=\"text-foreground text-sm font-semibold\">Specialist Visits</p>\n                        <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                          Cardiology, neurology, physical & occupational therapy, diagnostic imaging, and outpatient\n                          consultations.\n                        </p>\n                      </div>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-1\">\n                      <span className=\"text-foreground text-sm font-bold tabular-nums\">80% after deductible</span>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">$50.00 office visit copay</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-0.5\">\n                      <span className=\"text-foreground text-sm font-medium tabular-nums\">60% of UCR</span>\n                      <p className=\"text-muted-foreground text-xs\">Balance billing applies above UCR</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"text-warning flex items-center gap-1.5 text-xs\">\n                      <AlertCircle className=\"size-3.5 shrink-0\" />\n                      <span className=\"font-medium\">Required for Procedures</span>\n                    </div>\n                    <p className=\"text-muted-foreground mt-0.5 text-xs\">PA required for MRI, CT scans & surgery</p>\n                  </TableCell>\n                  <TableCell className=\"text-right align-top\">\n                    <div className=\"space-y-0.5\">\n                      <p className=\"text-foreground text-sm font-bold tabular-nums\">$50.00 copay</p>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">Max 30 PT visits / calendar year</p>\n                    </div>\n                  </TableCell>\n                </TableRow>\n\n                {/* Row 3: Urgent Care & ER */}\n                <TableRow>\n                  <TableCell className=\"align-top font-medium\">\n                    <div className=\"border-destructive/20 bg-destructive/10 text-destructive mt-0.5 flex size-7 shrink-0 items-center justify-center rounded-md border\">\n                      <Hospital className=\"size-4\" />\n                    </div>\n                    <div className=\"space-y-0.5\">\n                      <p className=\"text-foreground text-sm font-semibold\">Urgent Care & ER</p>\n                      <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                        Emergency department trauma evaluation, hospital triage, advanced imaging, and walk-in urgent\n                        clinics.\n                      </p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-1\">\n                      <span className=\"text-foreground text-sm font-bold tabular-nums\">100% after copay</span>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">$100 Urgent / $350 ER + 20%</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-0.5\">\n                      <span className=\"text-foreground text-sm font-medium tabular-nums\">\n                        Emergency: In-Network Rate\n                      </span>\n                      <p className=\"text-muted-foreground text-xs\">Prudent Layperson Standard (ACA)</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"text-success flex items-center gap-1.5 text-xs\">\n                      <CheckCircle2 className=\"size-3.5 shrink-0\" />\n                      <span className=\"font-medium\">Exempt for Emergency</span>\n                    </div>\n                    <p className=\"text-muted-foreground mt-0.5 text-xs\">Notification requested within 48h</p>\n                  </TableCell>\n                  <TableCell className=\"text-right align-top\">\n                    <div className=\"space-y-0.5\">\n                      <p className=\"text-foreground text-sm font-bold tabular-nums\">$100.00 / $350.00</p>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">ER copay waived if admitted</p>\n                    </div>\n                  </TableCell>\n                </TableRow>\n\n                {/* Row 4: Prescription Drug Tiers */}\n                <TableRow>\n                  <TableCell className=\"align-top font-medium\">\n                    <div className=\"flex items-start gap-2.5\">\n                      <div className=\"border-chart-1/20 bg-chart-1/10 text-chart-1 mt-0.5 flex size-7 shrink-0 items-center justify-center rounded-md border\">\n                        <Pill className=\"size-4\" />\n                      </div>\n                      <div className=\"space-y-0.5\">\n                        <p className=\"text-foreground text-sm font-semibold\">Prescription Drug Tiers</p>\n                        <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                          Tier 1 Generic, Tier 2 Preferred Brand, Tier 3 Non-Preferred Brand, Tier 4 Specialty\n                          Biologics.\n                        </p>\n                      </div>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-1\">\n                      <span className=\"text-foreground text-sm font-bold tabular-nums\">Tier 1–3 Copay / T4 20%</span>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">T1: $10 · T2: $35 · T3: $70</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"space-y-0.5\">\n                      <span className=\"text-muted-foreground text-sm font-medium\">Not Covered</span>\n                      <p className=\"text-muted-foreground text-xs\">Participating retail & mail order only</p>\n                    </div>\n                  </TableCell>\n                  <TableCell className=\"align-top\">\n                    <div className=\"text-warning flex items-center gap-1.5 text-xs\">\n                      <AlertCircle className=\"size-3.5 shrink-0\" />\n                      <span className=\"font-medium\">Step Therapy / PA</span>\n                    </div>\n                    <p className=\"text-muted-foreground mt-0.5 text-xs\">Mandatory PA for Tier 4 Specialty</p>\n                  </TableCell>\n                  <TableCell className=\"text-right align-top\">\n                    <div className=\"space-y-0.5\">\n                      <p className=\"text-foreground text-sm font-bold tabular-nums\">$10.00 – $70.00</p>\n                      <p className=\"text-muted-foreground text-xs tabular-nums\">$3,500.00 Rx Annual OOP Max</p>\n                    </div>\n                  </TableCell>\n                </TableRow>\n              </TableBody>\n            </Table>\n          </div>\n        </CardContent>\n      </Card>\n\n      {/* Secondary Insurance / Coordination of Benefits (COB) Card */}\n      <Card>\n        <CardHeader>\n          <div className=\"flex flex-col gap-2 sm:flex-row sm:items-center sm:justify-between\">\n            <div className=\"space-y-1\">\n              <div className=\"flex items-center gap-2\">\n                <FileText className=\"text-primary size-4\" />\n                <CardTitle className=\"text-base sm:text-lg\">\n                  Secondary Insurance & Coordination of Benefits (COB)\n                </CardTitle>\n              </div>\n              <CardDescription className=\"text-xs sm:text-sm\">\n                Medicare secondary payor rules and automated electronic crossover claims coordination.\n              </CardDescription>\n            </div>\n            <Badge\n              wrap\n              variant=\"outline\"\n              className=\"border-success/30 bg-success/10 text-success w-fit text-xs font-medium\"\n            >\n              Automatic Crossover Active\n            </Badge>\n          </div>\n        </CardHeader>\n        <CardContent className=\"space-y-4\">\n          <div className=\"grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4\">\n            {/* Secondary Payer */}\n            <div className=\"border-border/70 bg-muted/30 space-y-1 rounded-lg border p-3.5\">\n              <p className=\"text-muted-foreground text-xs font-medium\">Secondary Payer</p>\n              <p className=\"text-foreground text-sm font-semibold\">Medicare Part B (CMS)</p>\n              <p className=\"text-muted-foreground text-xs\">Medical Insurance</p>\n            </div>\n\n            {/* Policy & HICN Number */}\n            <div className=\"border-border/70 bg-muted/30 space-y-1 rounded-lg border p-3.5\">\n              <p className=\"text-muted-foreground text-xs font-medium\">Secondary Policy / MBI</p>\n              <p className=\"text-foreground font-mono text-sm font-semibold tabular-nums\">#MED-9023411-B</p>\n              <p className=\"text-muted-foreground text-xs\">Coordination: Secondary Payor</p>\n            </div>\n\n            {/* Part B Deductible */}\n            <div className=\"border-border/70 bg-muted/30 space-y-1 rounded-lg border p-3.5\">\n              <p className=\"text-muted-foreground text-xs font-medium\">Medicare Part B Deductible</p>\n              <p className=\"text-foreground text-sm font-semibold tabular-nums\">$240.00 / $240.00 met</p>\n              <p className=\"text-success text-xs font-medium\">100% Deductible Satisfied</p>\n            </div>\n\n            {/* Secondary Benefit Coverage */}\n            <div className=\"border-border/70 bg-muted/30 space-y-1 rounded-lg border p-3.5\">\n              <p className=\"text-muted-foreground text-xs font-medium\">Secondary Cost Sharing</p>\n              <p className=\"text-foreground text-sm font-semibold\">20% Coinsurance Balance</p>\n              <p className=\"text-muted-foreground text-xs\">Covers patient gap liability</p>\n            </div>\n          </div>\n\n          {/* Coordination of Benefits EDI Advice Banner */}\n          <div className=\"border-border/80 bg-muted/40 flex items-start gap-3 rounded-lg border p-3.5\">\n            <Info className=\"text-primary mt-0.5 size-4 shrink-0\" />\n            <div className=\"space-y-0.5 text-xs leading-relaxed\">\n              <p className=\"text-foreground font-semibold\">Automated 837P / EDI-271 Crossover Agreement (COBA)</p>\n              <p className=\"text-muted-foreground\">\n                Primary claims processed by BlueCross BlueShield automatically transmit to Medicare for secondary\n                adjudication. No manual paper secondary submission is required for eligible in-network clinical\n                encounters.\n              </p>\n            </div>\n          </div>\n        </CardContent>\n      </Card>\n    </div>\n  )\n}\n\nexport default InsuranceEligibilityChecker\n",
      "type": "registry:block",
      "target": "~/components/blocks/InsuranceEligibilityChecker.tsx"
    }
  ],
  "dependencies": [
    "lucide-react"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/react/badge.json",
    "https://uipkge.dev/r/react/button.json",
    "https://uipkge.dev/r/react/card.json",
    "https://uipkge.dev/r/react/progress.json",
    "https://uipkge.dev/r/react/separator.json",
    "https://uipkge.dev/r/react/table.json"
  ],
  "description": "Real-time health insurance eligibility and benefits verification dashboard: patient member demographics, active payer status, individual deductible and out-of-pocket maximum progress trackers, primary care and specialist copay benefit cards, category-level coverage breakdown table with in/out-of-network rates, and Medicare secondary coordination of benefits.",
  "categories": [
    "healthcare",
    "app"
  ]
}