/**
 * Resource Guide Editor Layout
 *
 * Full-width layout for the Puck editor, bypassing the standard admin layout constraints.
 * Authentication is still handled by the parent admin layout.
 */

export default function ResourceGuideEditorLayout({ children }: { children: React.ReactNode }) {
  return (
    <div
      style={{
        position: 'fixed',
        inset: 0,
        backgroundColor: '#0f172a',
        zIndex: 50,
      }}
    >
      {children}
    </div>
  );
}
