/** * Panel — reusable trading terminal panel component * Replaces the .panel / .panel-header CSS classes to avoid Tailwind 4 @apply issues */ import { type ReactNode, type CSSProperties } from "react"; const PANEL_BG = "linear-gradient(135deg, oklch(0.12 0.016 240) 0%, oklch(0.10 0.014 240) 100%)"; const PANEL_BORDER = "1px solid rgba(255,255,255,0.08)"; interface PanelProps { children: ReactNode; className?: string; style?: CSSProperties; } export function Panel({ children, className = "", style }: PanelProps) { return (