// src/components/Modal.jsx export default function Modal({ title, onClose, children, width = 900 }) { return (
e.stopPropagation()} style={{ background: "#fff", borderRadius: 16, width: "100%", maxWidth: width, maxHeight: "90vh", overflow: "auto", boxShadow: "0 20px 60px rgba(0,0,0,0.3)", }} >

{title}

{children}
); }