{/* Header */}
{icon && (
{icon}
)}
{title && (
{title}
)}
{!children && description && (
{description}
)}
{headerExtras && (
{headerExtras}
)}
{/* MAIN: Body + Sidebar – nimmt den Rest der Höhe ein */}
{(bodyContent || sidebar) && (
{/* Linker Inhalt (Details / Formulare) */}
{bodyContent && (
{bodyContent}
)}
{/* Rechte Sidebar (QR + Verlauf) */}
{sidebar && (
)}
)}
{/* Footer */}
{footer ? (
footer
) : hasActions ? (
{primaryAction &&
renderActionButton(
primaryAction,
hasBothActions ? 'flex-1' : undefined,
)}
{secondaryAction &&
renderActionButton(
{ ...secondaryAction, variant: secondaryAction.variant ?? 'secondary' },
hasBothActions ? 'flex-1' : undefined,
)}
) : null}