Card panel layout for dashboards and admin views. A contained surface with a header, optional divider, and scrollable content area. Suitable for data widgets, kanban columns, or settings sections.
<div className="rounded-lg border bg-card shadow-sm">
<div className="flex items-center justify-between px-5 py-3.5 border-b">
<h3 className="font-semibold text-sm text-card-foreground">Panel Title</h3>
<Button size="sm" variant="ghost">Action</Button>
</div>
<div className="p-5">
<p className="text-sm text-muted-foreground">Panel content goes here.</p>
</div>
</div>Bordered card with header, divider, and content area
Fixed-height panel with overflow-y scroll
Shadow elevation for depth in dense dashboards