Paper presentation on Uterine Fibroids Impact on Women’s Health and Quality of Life for gynec resident

Asking for Preferences
Reading File
Searching PubMed

uterine fibroids quality of life women health outcomes

Searching the Web

uterine fibroids epidemiology impact quality of life 2024 2025 guidelines

Finding Sources
Reading Article

PMID: 38246400

Reading Web Page

https://hsph.harvard.edu/wp-content/uploads/2025/07/Marsh-et…

Finding Sources
Reading Article

PMID: 38280434

Finding Sources
Finding Sources
Finding Sources
Reading File
Reading File
Finding Sources
Finding Sources
Reading File
Reading File
Reading File
Reading File
Running Command

mkdir -p /home/daytona/workspace/uterine-fibroids-ppt

Writing File

~/uterine-fibroids-ppt/create_pptx.js

const pptxgen = require("pptxgenjs");

const pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.author = "Gynecology Residency Program";
pres.title = "Uterine Fibroids: Impact on Women's Health and Quality of Life";

// ─── Color Palette ───
const C = {
  dark:    "1A2C42",   // deep navy – title/conclusion bg
  mid:     "234E72",   // medium navy – section headers
  accent:  "C0392B",   // crimson accent
  teal:    "1A7F7F",   // teal for callouts
  light:   "EAF2FB",   // near-white blue
  white:   "FFFFFF",
  text:    "1A2C42",
  subtext: "4A5568",
  gold:    "D4A017",
};

// ─── Helper ───
function sectionTag(slide, label, color) {
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.42, fill: { color }, line: { type: "none" } });
  slide.addText(label.toUpperCase(), {
    x: 0.35, y: 0.04, w: 9.3, h: 0.35,
    fontSize: 9, bold: true, color: C.white, charSpacing: 3, margin: 0,
  });
}

function bodyTitle(slide, text, color) {
  slide.addText(text, {
    x: 0.5, y: 0.52, w: 9, h: 0.65,
    fontSize: 22, bold: true, color: color || C.dark, fontFace: "Calibri",
  });
}

function addBullets(slide, items, opts) {
  const defaults = { x: 0.55, y: 1.25, w: 8.9, h: 3.9, fontSize: 14, color: C.text, fontFace: "Calibri" };
  const o = Object.assign({}, defaults, opts);
  slide.addText(items.map((item, i) => ({
    text: item,
    options: { bullet: { indent: 15 }, breakLine: i < items.length - 1 },
  })), o);
}

function divider(slide, y) {
  slide.addShape(pres.ShapeType.line, {
    x: 0.5, y: y || 1.18, w: 9, h: 0,
    line: { color: C.accent, width: 1.5 },
  });
}

// ═══════════════════════════════════════════
// SLIDE 1 – TITLE
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  // Full-slide dark background
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.dark }, line: { type: "none" } });
  // Red accent bar
  s.addShape(pres.ShapeType.rect, { x: 0, y: 4.6, w: 10, h: 0.08, fill: { color: C.accent }, line: { type: "none" } });
  // Left accent stripe
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: C.accent }, line: { type: "none" } });

  s.addText("UTERINE FIBROIDS", {
    x: 0.5, y: 0.8, w: 9.2, h: 1.0,
    fontSize: 40, bold: true, color: C.white, fontFace: "Calibri",
    align: "center", charSpacing: 2,
  });
  s.addText("Impact on Women's Health & Quality of Life", {
    x: 0.5, y: 1.85, w: 9.2, h: 0.7,
    fontSize: 22, color: "A8C6E8", fontFace: "Calibri", align: "center", italic: true,
  });
  s.addShape(pres.ShapeType.line, { x: 2.5, y: 2.7, w: 5, h: 0, line: { color: C.gold, width: 1.5 } });
  s.addText("Paper Presentation  |  Gynecology Residency", {
    x: 0.5, y: 2.85, w: 9.2, h: 0.4,
    fontSize: 13, color: "8FAFC8", fontFace: "Calibri", align: "center",
  });
  s.addText("May 2026", {
    x: 0.5, y: 3.3, w: 9.2, h: 0.35,
    fontSize: 12, color: "7A9BB8", fontFace: "Calibri", align: "center",
  });

  // Key stat boxes
  const stats = [
    { val: "40–89%", lbl: "Lifetime Prevalence" },
    { val: "#1", lbl: "Cause of Hysterectomy (US)" },
    { val: "$34B", lbl: "Annual Economic Burden" },
  ];
  stats.forEach((st, i) => {
    const x = 0.7 + i * 2.9;
    s.addShape(pres.ShapeType.roundRect, {
      x, y: 3.85, w: 2.5, h: 1.35,
      fill: { color: "22426A" }, line: { color: C.teal, width: 1 }, rectRadius: 0.1,
    });
    s.addText(st.val, { x, y: 3.9, w: 2.5, h: 0.65, fontSize: 22, bold: true, color: C.gold, align: "center", fontFace: "Calibri" });
    s.addText(st.lbl, { x, y: 4.55, w: 2.5, h: 0.5, fontSize: 9.5, color: "A8C6E8", align: "center", fontFace: "Calibri" });
  });
}

// ═══════════════════════════════════════════
// SLIDE 2 – EPIDEMIOLOGY
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Epidemiology", C.mid);
  bodyTitle(s, "How Common Are Uterine Fibroids?");
  divider(s);

  // Left column – bullet facts
  addBullets(s, [
    "Most common pelvic neoplasm in reproductive-aged women",
    "Lifetime prevalence: 40–89% depending on detection method & population",
    "Cumulative incidence by age 50: ~70% in White women, >80% in Black women (US)",
    "Black women develop fibroids at younger ages with larger, more numerous tumors",
    "Detected in 3–4% of mid-trimester ultrasound evaluations in pregnancy",
    "Leading cause of hysterectomy in the United States",
    "Annual US economic burden: ~$34 billion (direct + indirect costs)",
  ], { x: 0.55, y: 1.25, w: 5.5, h: 4.0, fontSize: 13 });

  // Right info box
  s.addShape(pres.ShapeType.roundRect, {
    x: 6.3, y: 1.3, w: 3.45, h: 4.0,
    fill: { color: C.light }, line: { color: C.mid, width: 1 }, rectRadius: 0.12,
  });
  s.addText("RISK FACTORS", {
    x: 6.4, y: 1.4, w: 3.25, h: 0.4,
    fontSize: 12, bold: true, color: C.mid, align: "center", charSpacing: 1, fontFace: "Calibri",
  });
  const rf = ["Age (reproductive years peak)", "Black/African American race", "Nulliparity", "Obesity (BMI >30)", "Early menarche (<10 yrs)", "Family history", "Vitamin D deficiency", "Somatic MED12 gene mutations", "Germline FH gene mutations"];
  s.addText(rf.map((r, i) => ({ text: r, options: { bullet: { indent: 12 }, breakLine: i < rf.length - 1 } })), {
    x: 6.45, y: 1.85, w: 3.15, h: 3.3, fontSize: 11, color: C.text, fontFace: "Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 3 – PATHOPHYSIOLOGY & CLASSIFICATION
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Pathophysiology & Classification", C.mid);
  bodyTitle(s, "Pathogenesis & Fibroid Types");
  divider(s);

  // Pathogenesis box
  s.addShape(pres.ShapeType.roundRect, {
    x: 0.4, y: 1.3, w: 4.5, h: 2.5,
    fill: { color: "F0F7FF" }, line: { color: C.mid, width: 0.8 }, rectRadius: 0.1,
  });
  s.addText("Pathogenesis", { x: 0.5, y: 1.38, w: 4.3, h: 0.38, fontSize: 13, bold: true, color: C.mid, fontFace: "Calibri" });
  s.addText([
    { text: "• Monoclonal smooth muscle tumors of myometrium", options: { breakLine: true } },
    { text: "• Growth driven by estrogen & progesterone", options: { breakLine: true } },
    { text: "• Regress after menopause (hormone-dependent)", options: { breakLine: true } },
    { text: "• MED12 mutation: ~70% of fibroids", options: { breakLine: true } },
    { text: "• Extracellular matrix (ECM) contributes ~50% of fibroid volume", options: { breakLine: true } },
    { text: "• Degeneration types: hyaline, cystic, calcific, red (carneous)" },
  ], { x: 0.55, y: 1.78, w: 4.2, h: 1.9, fontSize: 11.5, color: C.text, fontFace: "Calibri" });

  // FIGO classification
  s.addShape(pres.ShapeType.roundRect, {
    x: 5.1, y: 1.3, w: 4.65, h: 2.5,
    fill: { color: "FFF8F0" }, line: { color: C.accent, width: 0.8 }, rectRadius: 0.1,
  });
  s.addText("FIGO Classification (PALM-COEIN)", { x: 5.2, y: 1.38, w: 4.4, h: 0.38, fontSize: 13, bold: true, color: C.accent, fontFace: "Calibri" });
  const figo = [
    "Type 0 – Pedunculated submucosal",
    "Type 1 – <50% intramural (submucosal)",
    "Type 2 – ≥50% intramural (submucosal)",
    "Type 3 – Contacts endometrium, 100% intramural",
    "Type 4 – Intramural",
    "Type 5 – Subserosal, ≥50% intramural",
    "Type 6 – Subserosal, <50% intramural",
    "Type 7 – Pedunculated subserosal",
  ];
  s.addText(figo.map((f, i) => ({ text: f, options: { bullet: { indent: 12 }, breakLine: i < figo.length - 1 } })), {
    x: 5.2, y: 1.78, w: 4.35, h: 1.9, fontSize: 10.5, color: C.text, fontFace: "Calibri",
  });

  // Bottom note
  s.addShape(pres.ShapeType.roundRect, {
    x: 0.4, y: 3.95, w: 9.2, h: 1.3,
    fill: { color: "E8F4EA" }, line: { color: C.teal, width: 0.8 }, rectRadius: 0.1,
  });
  s.addText("Clinical Pearl", { x: 0.6, y: 4.0, w: 3, h: 0.35, fontSize: 12, bold: true, color: C.teal, fontFace: "Calibri" });
  s.addText("Fibroids themselves are BENIGN and NOT premalignant. Risk of co-existing uterine sarcoma is ~1 in 1,100–1,500 women under 45 years. Concurrent leiomyosarcoma is often indistinguishable on imaging — diagnosis is histopathological.", {
    x: 0.6, y: 4.35, w: 8.9, h: 0.8, fontSize: 11, color: C.text, fontFace: "Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 4 – CLINICAL FEATURES
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Clinical Features", C.mid);
  bodyTitle(s, "Symptoms & Clinical Presentation");
  divider(s);

  const domains = [
    {
      title: "Abnormal Uterine Bleeding",
      color: C.accent,
      items: [
        "Heavy menstrual bleeding (HMB) — most common complaint",
        "Menorrhagia, metrorrhagia, intermenstrual spotting",
        "Iron-deficiency anaemia (fatigue, dyspnoea)",
        "More common with submucosal fibroids",
      ],
    },
    {
      title: "Bulk / Pressure Symptoms",
      color: C.mid,
      items: [
        "Pelvic heaviness, protuberant abdomen",
        "Urinary frequency, urgency, nocturia",
        "Constipation, incomplete evacuation",
        "Hydronephrosis (large fibroids)",
      ],
    },
    {
      title: "Pain",
      color: C.teal,
      items: [
        "Dysmenorrhoea, chronic pelvic pain",
        "Dyspareunia",
        "Acute pain: red degeneration (pregnancy), torsion of pedunculated fibroid",
      ],
    },
    {
      title: "Reproductive Morbidity",
      color: "8E44AD",
      items: [
        "Infertility (distortion of uterine cavity)",
        "Recurrent miscarriage",
        "Preterm labour, malpresentation",
        "Placenta praevia, placental abruption",
      ],
    },
  ];

  const colW = 4.55;
  domains.forEach((d, i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.3 + col * 4.9;
    const y = 1.3 + row * 2.05;
    s.addShape(pres.ShapeType.roundRect, {
      x, y, w: colW, h: 1.9,
      fill: { color: C.light }, line: { color: d.color, width: 1.2 }, rectRadius: 0.1,
    });
    s.addText(d.title, { x: x + 0.1, y: y + 0.05, w: colW - 0.2, h: 0.38, fontSize: 12, bold: true, color: d.color, fontFace: "Calibri" });
    s.addText(d.items.map((it, ii) => ({ text: it, options: { bullet: { indent: 10 }, breakLine: ii < d.items.length - 1 } })), {
      x: x + 0.1, y: y + 0.42, w: colW - 0.2, h: 1.35, fontSize: 10.5, color: C.text, fontFace: "Calibri",
    });
  });
}

// ═══════════════════════════════════════════
// SLIDE 5 – IMPACT ON QUALITY OF LIFE
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Quality of Life", C.mid);
  bodyTitle(s, "Impact on Women's Quality of Life");
  divider(s);

  // Left text
  const leftItems = [
    "QoL significantly impaired across physical, emotional & social domains",
    "UFS-QoL (Uterine Fibroid Symptom–QoL): validated primary instrument for symptom severity + HR-QoL",
    "Sexual dysfunction: dyspareunia, reduced libido, negative body image",
    "Occupational impairment: absenteeism due to HMB & pain",
    "Social isolation: avoidance of activities during heavy periods",
    "Sleep disturbance from nocturia, pain, pad-changing",
    "Anxiety and depression: up to 30% of women with symptomatic fibroids",
    "Financial toxicity: missed workdays, treatment costs",
  ];
  addBullets(s, leftItems, { x: 0.5, y: 1.25, w: 5.7, h: 4.1, fontSize: 12.5 });

  // Right evidence box
  s.addShape(pres.ShapeType.roundRect, {
    x: 6.5, y: 1.3, w: 3.3, h: 4.0,
    fill: { color: "FFF0F0" }, line: { color: C.accent, width: 1 }, rectRadius: 0.12,
  });
  s.addText("EVIDENCE BASE", {
    x: 6.6, y: 1.4, w: 3.1, h: 0.38,
    fontSize: 11, bold: true, color: C.accent, align: "center", charSpacing: 1, fontFace: "Calibri",
  });
  const evid = [
    { t: "Neumann et al. (2024)", sub: "Fertil Steril — Systematic Review (67 studies). ALL interventions significantly improved fibroid-specific QoL & mental health." },
    { t: "Marsh et al. (2024)", sub: "JAMA — Racial disparities: Black women have higher morbidity, more hysterectomies, less access to minimally invasive procedures." },
    { t: "COMPARE-UF Study", sub: "Prospective cohort — substantial QoL improvement 1–3 years post-procedure; uterine-sparing and hysterectomy groups comparable at year 3." },
  ];
  evid.forEach((e, i) => {
    const ey = 1.88 + i * 1.12;
    s.addText(e.t, { x: 6.65, y: ey, w: 3.05, h: 0.32, fontSize: 10.5, bold: true, color: C.mid, fontFace: "Calibri" });
    s.addText(e.sub, { x: 6.65, y: ey + 0.3, w: 3.05, h: 0.7, fontSize: 9.5, color: C.subtext, fontFace: "Calibri" });
    if (i < evid.length - 1) {
      s.addShape(pres.ShapeType.line, { x: 6.7, y: ey + 1.05, w: 2.9, h: 0, line: { color: "FFBBBB", width: 0.5 } });
    }
  });
}

// ═══════════════════════════════════════════
// SLIDE 6 – DIAGNOSIS
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Diagnosis & Evaluation", C.mid);
  bodyTitle(s, "Diagnostic Approach");
  divider(s);

  const steps = [
    {
      icon: "01",
      title: "History & Examination",
      points: [
        "Detailed menstrual & gynaecologic history",
        "Bimanual pelvic exam: enlarged/irregular uterus",
        "Signs of anaemia (pallor, tachycardia)",
      ],
      color: C.mid,
    },
    {
      icon: "02",
      title: "First-Line: Pelvic Ultrasound",
      points: [
        "Well-defined hypoechoic spherical mass",
        "Transvaginal USG: higher sensitivity for small/submucosal fibroids",
        "SIS (saline infusion sonography): cavity assessment",
      ],
      color: C.teal,
    },
    {
      icon: "03",
      title: "Second-Line: MRI Pelvis",
      points: [
        "Gold standard for fibroid mapping",
        "Differentiates leiomyoma from adenomyosis & sarcoma",
        "Essential pre-UAE / ablation planning",
      ],
      color: C.accent,
    },
    {
      icon: "04",
      title: "Hysteroscopy",
      points: [
        "Direct visualisation of cavity",
        "Diagnoses & treats submucosal fibroids (Type 0–2)",
        "Combined with endometrial biopsy if indicated",
      ],
      color: "8E44AD",
    },
  ];

  steps.forEach((st, i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.3 + col * 4.9;
    const y = 1.3 + row * 2.05;

    s.addShape(pres.ShapeType.roundRect, {
      x, y, w: 4.55, h: 1.9,
      fill: { color: C.light }, line: { color: st.color, width: 1.2 }, rectRadius: 0.1,
    });
    s.addShape(pres.ShapeType.roundRect, {
      x: x + 0.08, y: y + 0.08, w: 0.55, h: 0.55,
      fill: { color: st.color }, line: { type: "none" }, rectRadius: 0.05,
    });
    s.addText(st.icon, { x: x + 0.08, y: y + 0.1, w: 0.55, h: 0.45, fontSize: 14, bold: true, color: C.white, align: "center", fontFace: "Calibri" });
    s.addText(st.title, { x: x + 0.7, y: y + 0.1, w: 3.7, h: 0.42, fontSize: 12, bold: true, color: st.color, fontFace: "Calibri" });
    s.addText(st.points.map((p, ii) => ({ text: p, options: { bullet: { indent: 10 }, breakLine: ii < st.points.length - 1 } })), {
      x: x + 0.12, y: y + 0.62, w: 4.3, h: 1.2, fontSize: 10.5, color: C.text, fontFace: "Calibri",
    });
  });

  // Labs note
  s.addText("Laboratory: CBC (anaemia), serum ferritin, thyroid function (exclude AUB causes). CA-125 not specific; elevated in large fibroids.", {
    x: 0.4, y: 5.1, w: 9.2, h: 0.42, fontSize: 10, color: C.subtext, italic: true, fontFace: "Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 7 – MANAGEMENT: MEDICAL
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Management", C.mid);
  bodyTitle(s, "Medical (Non-Surgical) Treatment");
  divider(s);

  const rxGroups = [
    {
      label: "GnRH Agonists",
      eg: "Leuprolide, Goserelin",
      action: "Induce medical menopause; 35–60% fibroid shrinkage",
      use: "Pre-op priming (≤3–6 months); bridge to surgery",
      note: "SE: menopausal symptoms, bone loss. NOT long-term monotherapy",
      color: C.accent,
    },
    {
      label: "GnRH Antagonists",
      eg: "Elagolix + E2/NETA (Oriahnn), Relugolix combo",
      action: "Rapid oestrogen suppression; reduces HMB",
      use: "FDA-approved for fibroid-associated HMB",
      note: "Bone density preserved with add-back therapy (RCT: ELARIS, LIBERTY)",
      color: C.mid,
    },
    {
      label: "Progestin / SPRM",
      eg: "LNG-IUS, Ulipristal acetate, Mifepristone",
      action: "Reduces HMB; may stabilise/reduce fibroid size",
      use: "LNG-IUS: effective for HMB (submucosal excluded). Ulipristal: suspended in EU (liver injury signal)",
      note: "Mifepristone 5–10 mg/day: reduces symptoms transitionally",
      color: C.teal,
    },
    {
      label: "Symptomatic / Adjuncts",
      eg: "NSAIDs, TXA, CHCs, Iron",
      action: "Reduce bleeding & pain without fibroid regression",
      use: "Tranexamic acid: reduces MBL by ~50%. NSAIDs: dysmenorrhoea",
      note: "Combined hormonal contraceptives: modest benefit; may not shrink fibroids",
      color: "8E44AD",
    },
  ];

  rxGroups.forEach((g, i) => {
    const col = i % 2;
    const row = Math.floor(i / 2);
    const x = 0.3 + col * 4.85;
    const y = 1.3 + row * 2.0;

    s.addShape(pres.ShapeType.roundRect, {
      x, y, w: 4.5, h: 1.85,
      fill: { color: C.white }, line: { color: g.color, width: 1.2 }, rectRadius: 0.1,
    });
    s.addShape(pres.ShapeType.rect, { x, y, w: 4.5, h: 0.38, fill: { color: g.color }, line: { type: "none" }, rectRadius: 0.1 });
    s.addText(g.label, { x: x + 0.1, y: y + 0.04, w: 4.3, h: 0.3, fontSize: 12, bold: true, color: C.white, fontFace: "Calibri" });
    s.addText([
      { text: "Drugs: ", options: { bold: true, breakLine: false } },
      { text: g.eg + "\n", options: { breakLine: true } },
      { text: "Action: ", options: { bold: true, breakLine: false } },
      { text: g.action + "\n", options: { breakLine: true } },
      { text: "Use: ", options: { bold: true, breakLine: false } },
      { text: g.use + "\n", options: { breakLine: true } },
      { text: "Note: ", options: { bold: true, breakLine: false } },
      { text: g.note },
    ], { x: x + 0.12, y: y + 0.42, w: 4.25, h: 1.35, fontSize: 9.5, color: C.text, fontFace: "Calibri" });
  });
}

// ═══════════════════════════════════════════
// SLIDE 8 – MANAGEMENT: SURGICAL & INTERVENTIONAL
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Management", C.mid);
  bodyTitle(s, "Surgical & Interventional Procedures");
  divider(s);

  const procs = [
    {
      name: "Hysteroscopic Myomectomy",
      type: "Surgical — Uterine Sparing",
      color: C.teal,
      bullets: [
        "Submucosal fibroids (Type 0, 1, 2)",
        "Gold standard for cavity-distorting fibroids + infertility",
        "Outpatient; rapid recovery",
      ],
    },
    {
      name: "Laparoscopic / Abdominal Myomectomy",
      type: "Surgical — Uterine Sparing",
      color: C.teal,
      bullets: [
        "Intramural / subserosal fibroids",
        "Preserves uterus; allows future pregnancy",
        "Lower reintervention risk vs UAE (RR 0.32; Tzanis 2024)",
      ],
    },
    {
      name: "Uterine Artery Embolization (UAE)",
      type: "Interventional Radiology",
      color: C.mid,
      bullets: [
        "Embolic agents occlude uterine arteries → infarction",
        "QoL improvement comparable to myomectomy (RCT data)",
        "Higher reintervention rate (HR 0.41 vs myomectomy)",
        "Ovarian reserve concern; less preferred for fertility",
      ],
    },
    {
      name: "Hysterectomy",
      type: "Definitive — Uterine Removal",
      color: C.accent,
      bullets: [
        "Only definitive cure; no recurrence",
        "Laparoscopic preferred; open for large uteri",
        "Power morcellation abandoned (sarcoma dissemination risk)",
        "Laparoscopic hysterectomy: greatest QoL gain at 1 year (COMPARE-UF)",
      ],
    },
    {
      name: "MRI-Guided HIFU / Radiofrequency Ablation",
      type: "Minimally Invasive Ablation",
      color: "8E44AD",
      bullets: [
        "HIFU: non-invasive thermal ablation",
        "Transcervical RFA (Sonata): AAGL 2025 systematic review — effective & safe",
        "Suitable for women wishing uterine conservation",
      ],
    },
  ];

  // 3-2 grid layout
  const positions = [
    { x: 0.25, y: 1.28, w: 3.1, h: 2.0 },
    { x: 3.5, y: 1.28, w: 3.1, h: 2.0 },
    { x: 6.75, y: 1.28, w: 3.1, h: 2.0 },
    { x: 0.25, y: 3.38, w: 4.6, h: 2.0 },
    { x: 5.0, y: 3.38, w: 4.85, h: 2.0 },
  ];

  procs.forEach((p, i) => {
    const pos = positions[i];
    s.addShape(pres.ShapeType.roundRect, {
      x: pos.x, y: pos.y, w: pos.w, h: pos.h,
      fill: { color: C.white }, line: { color: p.color, width: 1.2 }, rectRadius: 0.08,
    });
    s.addShape(pres.ShapeType.rect, {
      x: pos.x, y: pos.y, w: pos.w, h: 0.35,
      fill: { color: p.color }, line: { type: "none" },
    });
    s.addText(p.name, { x: pos.x + 0.08, y: pos.y + 0.02, w: pos.w - 0.15, h: 0.3, fontSize: 9.5, bold: true, color: C.white, fontFace: "Calibri" });
    s.addText(p.type, { x: pos.x + 0.08, y: pos.y + 0.36, w: pos.w - 0.15, h: 0.28, fontSize: 8.5, italic: true, color: p.color, fontFace: "Calibri" });
    s.addText(p.bullets.map((b, bi) => ({ text: b, options: { bullet: { indent: 8 }, breakLine: bi < p.bullets.length - 1 } })), {
      x: pos.x + 0.1, y: pos.y + 0.65, w: pos.w - 0.18, h: pos.h - 0.68, fontSize: 9.5, color: C.text, fontFace: "Calibri",
    });
  });
}

// ═══════════════════════════════════════════
// SLIDE 9 – RACIAL DISPARITIES & SPECIAL POPULATIONS
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.white }, line: { type: "none" } });
  sectionTag(s, "Disparities & Special Populations", C.mid);
  bodyTitle(s, "Racial Disparities & Reproductive Considerations");
  divider(s);

  // Left – disparities
  s.addShape(pres.ShapeType.roundRect, {
    x: 0.3, y: 1.3, w: 4.5, h: 3.95,
    fill: { color: "FFF4F4" }, line: { color: C.accent, width: 1 }, rectRadius: 0.1,
  });
  s.addText("Racial Disparities", { x: 0.4, y: 1.38, w: 4.3, h: 0.38, fontSize: 13, bold: true, color: C.accent, fontFace: "Calibri" });
  const disps = [
    "Black women: 2–3× higher prevalence than White women",
    "Diagnosis at younger age; larger & more numerous fibroids",
    "More severe symptoms & greater QoL impairment",
    "Higher rates of hysterectomy; less access to minimally invasive surgery",
    "Lower rate of UAE and MRI-guided procedures",
    "Contributing factors: delayed diagnosis, healthcare access barriers, implicit bias",
    "Critical need for culturally tailored, patient-centred care (Marsh, JAMA 2024)",
  ];
  s.addText(disps.map((d, i) => ({ text: d, options: { bullet: { indent: 12 }, breakLine: i < disps.length - 1 } })), {
    x: 0.45, y: 1.78, w: 4.2, h: 3.35, fontSize: 11.5, color: C.text, fontFace: "Calibri",
  });

  // Right – fertility / pregnancy
  s.addShape(pres.ShapeType.roundRect, {
    x: 5.0, y: 1.3, w: 4.7, h: 3.95,
    fill: { color: "F0FFF4" }, line: { color: C.teal, width: 1 }, rectRadius: 0.1,
  });
  s.addText("Fibroids in Pregnancy & Fertility", { x: 5.1, y: 1.38, w: 4.5, h: 0.38, fontSize: 13, bold: true, color: C.teal, fontFace: "Calibri" });
  const pregPoints = [
    "Prevalence in pregnancy: 3–4% on mid-trimester ultrasound",
    "Most fibroids do NOT grow significantly during pregnancy",
    "Associated risks: placenta praevia (OR 2.2), abruption (OR 2.6), preterm birth, malpresentation, PPH",
    "Red degeneration: acute pain, localised tenderness — managed conservatively",
    "Infertility: submucosal fibroids are most harmful; myomectomy restores fertility",
    "Post-myomectomy pregnancy: uterine scar counselling essential",
    "Myomectomy at caesarean section: safe in experienced hands",
  ];
  s.addText(pregPoints.map((p, i) => ({ text: p, options: { bullet: { indent: 12 }, breakLine: i < pregPoints.length - 1 } })), {
    x: 5.1, y: 1.78, w: 4.45, h: 3.35, fontSize: 11.5, color: C.text, fontFace: "Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 10 – KEY TAKEAWAYS & REFERENCES
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: C.dark }, line: { type: "none" } });
  // Top accent
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.08, fill: { color: C.accent }, line: { type: "none" } });

  s.addText("KEY TAKEAWAYS", {
    x: 0.5, y: 0.15, w: 9, h: 0.55,
    fontSize: 18, bold: true, color: C.white, fontFace: "Calibri", charSpacing: 2, align: "center",
  });

  const takeaways = [
    { num: "1", txt: "Uterine fibroids are the most common pelvic tumour in reproductive women, with lifetime prevalence up to 89%." },
    { num: "2", txt: "HMB, pelvic pain, bulk symptoms & reproductive morbidity form the core clinical triad — significantly impairing QoL and mental health." },
    { num: "3", txt: "UFS-QoL is the validated instrument; ALL treatment modalities improve it, though benefits of uterine-sparing procedures may decline by year 3." },
    { num: "4", txt: "Shared decision-making is central: weigh uterine preservation desire, fertility, fibroid location/number, and symptom severity." },
    { num: "5", txt: "Racial disparities are profound — Black women suffer greater disease burden and receive less equitable care. Advocacy and equity-focused practice are mandatory." },
  ];

  takeaways.forEach((tk, i) => {
    const y = 0.85 + i * 0.88;
    s.addShape(pres.ShapeType.ellipse, {
      x: 0.4, y: y + 0.1, w: 0.48, h: 0.48,
      fill: { color: C.accent }, line: { type: "none" },
    });
    s.addText(tk.num, { x: 0.4, y: y + 0.12, w: 0.48, h: 0.38, fontSize: 13, bold: true, color: C.white, align: "center", fontFace: "Calibri" });
    s.addText(tk.txt, { x: 1.05, y: y + 0.05, w: 8.65, h: 0.65, fontSize: 12, color: "D4E6F5", fontFace: "Calibri" });
  });

  // References strip
  s.addShape(pres.ShapeType.rect, { x: 0, y: 5.05, w: 10, h: 0.575, fill: { color: "12223A" }, line: { type: "none" } });
  s.addText("References: Marsh et al., JAMA 2024 | Neumann et al., Fertil Steril 2024 | Tzanis et al., Am J Obstet Gynecol 2024 | Chen et al., J Min Inv Gynecol 2025 | Goldman-Cecil Medicine | Berek & Novak's Gynecology | Creasy & Resnik's MFM | Robbins & Kumar Basic Pathology", {
    x: 0.2, y: 5.07, w: 9.6, h: 0.52,
    fontSize: 7.5, color: "7A9BB8", fontFace: "Calibri", italic: true,
  });
}

// ─── Write file ───
pres.writeFile({ fileName: "/home/daytona/workspace/uterine-fibroids-ppt/Uterine_Fibroids_Presentation.pptx" })
  .then(() => console.log("DONE"))
  .catch(err => { console.error(err); process.exit(1); });
Running Command

cd /home/daytona/workspace/uterine-fibroids-ppt && node create_pptx.js 2>&1

Running Command

libreoffice --headless --convert-to pdf /home/daytona/workspace/uterine-fibroids-ppt/Uterine_Fibroids_Presentation.pptx --outdir /home/daytona/workspace/uterine-fibroids-ppt/ 2>&1

Running Command

chmod 777 /home/daytona/workspace/uterine-fibroids-ppt/ && libreoffice --headless --convert-to pdf /home/daytona/workspace/uterine-fibroids-ppt/Uterine_Fibroids_Presentation.pptx --outdir /home/daytona/workspace/uterine-fibroids-ppt/ 2>&1

Running Command

cp /home/daytona/workspace/uterine-fibroids-ppt/Uterine_Fibroids_Presentation.pptx /tmp/uf_pres.pptx && libreoffice --headless --convert-to pdf /tmp/uf_pres.pptx --outdir /home/daytona/workspace/uterine-fibroids-ppt/ 2>&1

Running Command

libreoffice --headless --convert-to pdf /tmp/uf_pres.pptx --outdir /tmp/ 2>&1 && ls -lh /tmp/uf_pres.pdf && cp /tmp/uf_pres.pdf /home/daytona/workspace/uterine-fibroids-ppt/Uterine_Fibroids_Presentation.pdf

Your presentation is ready! Here are both download links:
PDF:

Uterine Fibroids Presentation

PDF Document · PDF

PPTX (editable):

Uterine Fibroids Presentation

Presentation · PPTX


What's inside (10 slides)

SlideContent
1 - TitleBold dark-navy design with 3 headline stats (40–89% prevalence, #1 cause of hysterectomy, $34B annual burden)
2 - EpidemiologyGlobal prevalence, cumulative incidence by race, risk factors table
3 - Pathophysiology & ClassificationMonoclonal SMT, MED12/FH mutations, FIGO PALM-COEIN classification (Types 0–7), clinical pearl on sarcoma
4 - Clinical Features4-domain grid: AUB/HMB, bulk symptoms, pain, reproductive morbidity
5 - QoL ImpactPhysical, emotional, social, occupational, sexual domains + 3 evidence callouts (Neumann 2024, Marsh JAMA 2024, COMPARE-UF)
6 - DiagnosisStepwise approach: history/exam → USG (first-line) → MRI (gold standard) → hysteroscopy; labs note
7 - Medical Treatment4-panel grid: GnRH agonists, GnRH antagonists (elagolix/relugolix), SPRMs, adjunct agents
8 - Surgical/InterventionalHysteroscopic myomectomy, lap/abdominal myomectomy, UAE, hysterectomy, HIFU/RFA - with 2024-25 RCT data
9 - Disparities & PregnancyRacial inequities in care; fibroid-in-pregnancy risks (placenta praevia OR 2.2, abruption OR 2.6, red degeneration)
10 - Key Takeaways5 numbered points + full reference strip
The slides use a professional dark-navy/crimson/teal color palette with consistent section labelling - suitable for a residency-level academic presentation.

Paper presentation on Uterine Fibroids Impact only on Women’s Health and Quality of Life for gynec resident

Summarising Conversation
Searching PubMed

uterine fibroids quality of life women health impact burden

Finding Sources
Searching the Web

uterine fibroids impact women quality of life mental health sexual function work productivity 2024 2025

Searching PubMed

uterine leiomyoma mental health depression anxiety sexual dysfunction

Searching PubMed

uterine fibroids work productivity absenteeism economic burden

Reading Web Page

https://link.springer.com/article/10.1186/s12905-025-03926-6

Searching PubMed

uterine fibroids psychosocial impact depression anxiety women

Reading Article

PMID: 38246400

Finding Sources
Finding Sources
Searching the Web

uterine fibroids UFS-QoL symptom severity subscales concern activities energy mood self-consciousness 2024

Reading File
Reading Web Page

https://link.springer.com/article/10.1186/s12905-025-04099-y

Reading File
Finding Sources
Finding Sources
Finding Sources
Reading File
Reading File
Writing File

~/uterine-fibroids-ppt/create_qol_pptx.js

const pptxgen = require("pptxgenjs");

const pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.author = "Gynecology Residency Program";
pres.title = "Uterine Fibroids: Impact on Women's Health & Quality of Life";

// ── Palette ──────────────────────────────────
const C = {
  navy:   "12263D",   // dark navy – title / footer bg
  blue:   "1D4E89",   // mid-blue – section bars
  red:    "C0392B",   // crimson – accent / highlight
  teal:   "0E7C7B",   // teal – callout boxes
  amethyst:"6C3483",  // purple – mental health
  amber:  "D35400",   // amber – social/work
  light:  "EBF5FB",   // near-white blue fill
  pale:   "FDF2F8",   // soft lavender fill
  white:  "FFFFFF",
  text:   "1A2C42",
  sub:    "4A5568",
  gold:   "C9A227",
};

// ── Helpers ──────────────────────────────────
function bg(s, color) {
  s.addShape(pres.ShapeType.rect, { x:0, y:0, w:10, h:5.625, fill:{color}, line:{type:"none"} });
}

function topBar(s, label, color) {
  s.addShape(pres.ShapeType.rect, { x:0, y:0, w:10, h:0.44, fill:{color}, line:{type:"none"} });
  s.addText(label.toUpperCase(), {
    x:0.35, y:0.05, w:9.3, h:0.34,
    fontSize:9, bold:true, color:C.white, charSpacing:3, margin:0,
  });
}

function slideTitle(s, txt, y, color) {
  s.addText(txt, {
    x:0.5, y: y||0.54, w:9, h:0.65,
    fontSize:23, bold:true, color:color||C.navy, fontFace:"Calibri",
  });
}

function rule(s, y, color) {
  s.addShape(pres.ShapeType.line, { x:0.5, y:y||1.22, w:9, h:0, line:{color:color||C.red, width:1.5} });
}

function bullets(s, items, opts) {
  const def = { x:0.55, y:1.3, w:8.9, h:3.9, fontSize:13, color:C.text, fontFace:"Calibri" };
  const o = Object.assign({}, def, opts);
  s.addText(items.map((t,i)=>({ text:t, options:{ bullet:{indent:14}, breakLine:i<items.length-1 } })), o);
}

function card(s, x, y, w, h, fillColor, borderColor, title, titleColor, bodyItems, bodyFontSize) {
  s.addShape(pres.ShapeType.roundRect, { x, y, w, h, fill:{color:fillColor}, line:{color:borderColor, width:1.2}, rectRadius:0.1 });
  if (title) {
    s.addText(title, { x:x+0.12, y:y+0.08, w:w-0.24, h:0.38, fontSize:12, bold:true, color:titleColor||borderColor, fontFace:"Calibri" });
  }
  if (bodyItems && bodyItems.length) {
    const bfs = bodyFontSize || 10.5;
    const ty = title ? y+0.48 : y+0.1;
    const th = title ? h-0.55 : h-0.18;
    s.addText(bodyItems.map((t,i)=>({ text:t, options:{ bullet:{indent:10}, breakLine:i<bodyItems.length-1 } })), {
      x:x+0.14, y:ty, w:w-0.28, h:th, fontSize:bfs, color:C.text, fontFace:"Calibri",
    });
  }
}

function statBox(s, x, y, val, label, bg2, textC) {
  s.addShape(pres.ShapeType.roundRect, { x, y, w:2.6, h:1.2, fill:{color:bg2||"1A3A5C"}, line:{color:C.teal, width:1}, rectRadius:0.1 });
  s.addText(val,   { x, y:y+0.05, w:2.6, h:0.68, fontSize:24, bold:true, color:textC||C.gold,  align:"center", fontFace:"Calibri" });
  s.addText(label, { x, y:y+0.72, w:2.6, h:0.42, fontSize:9,  color:"A8C6E8", align:"center",  fontFace:"Calibri" });
}

// ═══════════════════════════════════════════
// SLIDE 1 – TITLE
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.navy);
  s.addShape(pres.ShapeType.rect, { x:0, y:0, w:0.2, h:5.625, fill:{color:C.red}, line:{type:"none"} });
  s.addShape(pres.ShapeType.rect, { x:0, y:5.5, w:10, h:0.125, fill:{color:C.gold}, line:{type:"none"} });

  s.addText("UTERINE FIBROIDS", {
    x:0.5, y:0.65, w:9.2, h:0.9,
    fontSize:42, bold:true, color:C.white, fontFace:"Calibri", align:"center", charSpacing:2,
  });
  s.addText("Impact on Women's Health & Quality of Life", {
    x:0.5, y:1.6, w:9.2, h:0.62,
    fontSize:22, color:"9DC3E6", fontFace:"Calibri", align:"center", italic:true,
  });
  s.addShape(pres.ShapeType.line, { x:2.5, y:2.35, w:5, h:0, line:{color:C.gold, width:1.5} });
  s.addText("Paper Presentation  |  Gynecology Residency  |  May 2026", {
    x:0.5, y:2.48, w:9.2, h:0.38,
    fontSize:12, color:"7098C0", fontFace:"Calibri", align:"center",
  });

  // stat boxes
  const stats = [
    { v:"40–89%",   l:"Lifetime Prevalence" },
    { v:">2/3",     l:"Women Feel Tired / Worn Out" },
    { v:"~40%",     l:"Feel Sad or Discouraged" },
    { v:"$34B+",    l:"Annual US Economic Burden" },
  ];
  stats.forEach((st,i) => statBox(s, 0.35 + i*2.35, 3.0, st.v, st.l));
}

// ═══════════════════════════════════════════
// SLIDE 2 – OVERVIEW: SCOPE OF THE PROBLEM
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Scope of the Problem", C.blue);
  slideTitle(s, "Why Do Fibroids Matter for Women's Health?");
  rule(s);

  // left column
  bullets(s, [
    "Most common benign gynaecologic tumours — prevalence 20–40% of reproductive-age women; up to 80% of Black women by age 50",
    "Most fibroids are asymptomatic, BUT symptomatic disease is severely disabling",
    "Symptomatic fibroids are the leading cause of hysterectomy (~240,000/year in the US)",
    "Inpatient surgery alone costs $2.1 billion/year in the US; total annual burden ~$34 billion",
    "The burden is not just physical — it permeates every domain of a woman's life: physical health, mental health, reproductive health, sexuality, career, and social wellbeing",
    "QoL impairment is measurable and validated via UFS-QoL — a 37-item disease-specific instrument",
  ], { x:0.5, y:1.3, w:6.0, h:4.0, fontSize:12.5 });

  // right: UFS-QoL domains box
  s.addShape(pres.ShapeType.roundRect, {
    x:6.8, y:1.28, w:3.0, h:4.05,
    fill:{color:C.light}, line:{color:C.blue, width:1}, rectRadius:0.1,
  });
  s.addText("UFS-QoL Domains", {
    x:6.9, y:1.36, w:2.8, h:0.38,
    fontSize:12, bold:true, color:C.blue, align:"center", fontFace:"Calibri",
  });
  s.addShape(pres.ShapeType.line, { x:7.0, y:1.76, w:2.6, h:0, line:{color:C.blue, width:0.6} });
  const domains = [
    "1. Symptom Severity",
    "2. Concern / Worry",
    "3. Activities",
    "4. Energy / Mood",
    "5. Control",
    "6. Self-consciousness",
    "7. Sexual Function",
  ];
  s.addText(domains.map((d,i)=>({ text:d, options:{ bullet:false, breakLine:i<domains.length-1 } })), {
    x:6.95, y:1.82, w:2.75, h:3.35,
    fontSize:11.5, color:C.text, fontFace:"Calibri", lineSpacingMultiple:1.3,
  });
}

// ═══════════════════════════════════════════
// SLIDE 3 – PHYSICAL HEALTH IMPACT
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Physical Health Impact", C.blue);
  slideTitle(s, "How Fibroids Harm Physical Health");
  rule(s);

  const cards = [
    {
      title:"Abnormal Uterine Bleeding (AUB)",
      color:C.red,
      items:[
        "Heavy menstrual bleeding (HMB) — most common & distressing symptom",
        "Prolonged periods, clot passage, irregular cycles",
        "Iron-deficiency anaemia → chronic fatigue, dyspnoea, poor exercise tolerance",
        "~1/3 of women with fibroids have moderate-severe anaemia",
      ],
    },
    {
      title:"Pelvic Pain & Pressure",
      color:C.amber,
      items:[
        "Chronic pelvic pain, dysmenorrhoea",
        "Pelvic heaviness, protuberant abdomen",
        "Bladder: urinary frequency, urgency, nocturia",
        "Bowel: constipation, incomplete evacuation",
        "Acute pain: red (carneous) degeneration in pregnancy; torsion of pedunculated fibroid",
      ],
    },
    {
      title:"Reproductive Health",
      color:C.teal,
      items:[
        "Infertility: submucosal fibroids distort cavity and impair implantation",
        "Key points (Berek & Novak): submucosal fibroids decrease fertility; removal improves it",
        "Recurrent miscarriage, especially with cavity-distorting fibroids",
        "Obstetric risks: preterm labour, malpresentation, PPH, placenta praevia (OR 2.2), abruption (OR 2.6)",
      ],
    },
    {
      title:"General Health Consequences",
      color:C.blue,
      items:[
        "Chronic fatigue and reduced physical functioning",
        "Sleep disruption: nocturia, pain, pad-changing at night",
        "Haematological: severe anaemia requiring transfusion/IV iron",
        "Urinary tract complications: hydronephrosis (large fibroids)",
      ],
    },
  ];

  const pos = [
    { x:0.28, y:1.3 }, { x:5.1, y:1.3 },
    { x:0.28, y:3.38 }, { x:5.1, y:3.38 },
  ];
  cards.forEach((c,i) => {
    const p = pos[i];
    card(s, p.x, p.y, 4.65, 1.95, C.light, c.color, c.title, c.color, c.items, 10);
  });
}

// ═══════════════════════════════════════════
// SLIDE 4 – MENTAL HEALTH & EMOTIONAL WELLBEING
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Mental Health & Emotional Wellbeing", C.blue);
  slideTitle(s, "Psychological Burden of Fibroids");
  rule(s);

  // left wide content
  bullets(s, [
    "Two-thirds (>66%) of women with fibroids report feeling tired or worn out",
    "Over 40% express feeling sad or discouraged some, most, or all of the time (Yang et al., BMC Women's Health 2025)",
    "Anxiety and depression: persistent fear, worry, and emotional exhaustion are core features",
    "~69% of affected women express distress about harbouring a 'foreign entity' in their body",
    "Fear of the unpredictable — soiling clothing in public, unexpected flooding, haemorrhage",
    "Constant pre-planning: avoidance of travel, social events, physical exercise, swimming",
    "Fear of cancer: despite fibroid being benign, many women fear malignancy",
    "Grief and loss: infertility, miscarriage, or hysterectomy tied to identity and reproductive dreams",
    "Chronic stress from repeated medical consultations, uncertainty, and disease recurrence",
  ], { x:0.5, y:1.3, w:6.2, h:4.1, fontSize:12.5 });

  // right evidence panel
  s.addShape(pres.ShapeType.roundRect, {
    x:6.9, y:1.28, w:2.9, h:4.05,
    fill:{color:"FBF0FF"}, line:{color:C.amethyst, width:1.2}, rectRadius:0.1,
  });
  s.addText("KEY EVIDENCE", {
    x:7.0, y:1.38, w:2.7, h:0.36,
    fontSize:11, bold:true, color:C.amethyst, align:"center", charSpacing:1, fontFace:"Calibri",
  });
  s.addShape(pres.ShapeType.line, { x:7.1, y:1.76, w:2.5, h:0, line:{color:"D7B8F3", width:0.6} });
  const evid = [
    { t:"Neumann et al. 2024", b:"Fertil Steril — 67 studies: ALL show significant deterioration in mental health pre-treatment" },
    { t:"Yang et al. 2025", b:"BMC Women's Health — PROMs span QoL, mental health, pelvic floor, sexual function & body image" },
    { t:"Ghana Study 2025", b:"Korle Bu Hospital: 83.4% of women with fibroids reported moderate-to-very important QoL impact" },
    { t:"UFS-QoL subscale", b:"Energy/Mood mean score 61.5 ± 15.5 (0–100 scale); lowest-scoring HR-QoL domain" },
  ];
  evid.forEach((e,i) => {
    const ey = 1.86 + i*0.96;
    s.addText(e.t, { x:7.05, y:ey, w:2.65, h:0.3, fontSize:10, bold:true, color:C.amethyst, fontFace:"Calibri" });
    s.addText(e.b, { x:7.05, y:ey+0.3, w:2.65, h:0.55, fontSize:9, color:C.sub, fontFace:"Calibri" });
    if (i<evid.length-1) s.addShape(pres.ShapeType.line, { x:7.1, y:ey+0.88, w:2.5, h:0, line:{color:"D7B8F3", width:0.4} });
  });
}

// ═══════════════════════════════════════════
// SLIDE 5 – SEXUAL HEALTH & BODY IMAGE
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Sexual Health & Body Image", C.blue);
  slideTitle(s, "Sexuality, Body Image & Intimate Relationships");
  rule(s);

  // left: sexual health
  s.addShape(pres.ShapeType.roundRect, {
    x:0.3, y:1.3, w:4.55, h:3.95,
    fill:{color:"FFF4F4"}, line:{color:C.red, width:1.2}, rectRadius:0.1,
  });
  s.addText("Sexual Health Impact", { x:0.42, y:1.38, w:4.3, h:0.38, fontSize:13, bold:true, color:C.red, fontFace:"Calibri" });
  const sex = [
    "Dyspareunia — painful intercourse from pelvic pressure or distortion",
    "Reduced libido from chronic pain, fatigue, anaemia, and anxiety",
    "Avoidance of intercourse around unpredictable heavy bleeding",
    "Fear of embarrassment during intimacy",
    "UFS-QoL Sexual Function subscale mean: 59.4–61.4 (among lowest HR-QoL scores)",
    "Benign gynecological diseases are well-established contributors to sexual dysfunction",
    "Studies confirm body image AND sexual function both significantly impair intimate relationships",
    "Partner relationship strain: avoidance, guilt, reduced intimacy",
  ];
  s.addText(sex.map((t,i)=>({ text:t, options:{ bullet:{indent:12}, breakLine:i<sex.length-1 } })), {
    x:0.45, y:1.78, w:4.25, h:3.35, fontSize:11, color:C.text, fontFace:"Calibri",
  });

  // right: body image
  s.addShape(pres.ShapeType.roundRect, {
    x:5.15, y:1.3, w:4.55, h:3.95,
    fill:{color:"F0F8FF"}, line:{color:C.amethyst, width:1.2}, rectRadius:0.1,
  });
  s.addText("Body Image & Self-perception", { x:5.27, y:1.38, w:4.3, h:0.38, fontSize:13, bold:true, color:C.amethyst, fontFace:"Calibri" });
  const body = [
    "Protuberant abdomen from large fibroids → distorted self-image",
    "Concerns about appearing 'pregnant' or overweight",
    "Self-consciousness subscale mean (UFS-QoL): 58.3–77.6 — highly variable",
    "Avoidance of form-fitting clothing, swimwear, social activities",
    "Negative body image persists regardless of objective fibroid size",
    "Shame and silence: many women do not discuss symptoms with partners or family",
    "~69% feel distress about having a 'growth' inside their body",
    "Cultural taboos worsen this in many low-resource settings (Sub-Saharan Africa, South Asia)",
  ];
  s.addText(body.map((t,i)=>({ text:t, options:{ bullet:{indent:12}, breakLine:i<body.length-1 } })), {
    x:5.27, y:1.78, w:4.25, h:3.35, fontSize:11, color:C.text, fontFace:"Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 6 – SOCIAL, OCCUPATIONAL & ECONOMIC IMPACT
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Social, Occupational & Economic Impact", C.blue);
  slideTitle(s, "The Hidden Costs: Work, Society & Economy");
  rule(s);

  // left bullets
  bullets(s, [
    "Work absenteeism: African American women are 77% more likely to miss work than White women due to fibroids",
    "25% of women with fibroids report that the condition prevented achieving full career potential",
    "Presenteeism (present but impaired): reduced productivity during symptomatic periods",
    "Healthcare workers with fibroids show significant functional work impairment (Sell et al., JOEM 2025)",
    "Repeated unplanned absences during heavy menstrual days create occupational instability",
    "Social isolation: avoidance of social events, exercise, travel during unpredictable heavy bleeding",
    "Financial toxicity: costs of pads/tampons, analgesics, multiple consultations, procedures",
    "Indirect costs (missed wages, carer time) add considerably to the direct $2.1B surgical cost",
    "Economic loss extends beyond individuals to employers, families, and healthcare systems",
  ], { x:0.5, y:1.3, w:5.9, h:4.1, fontSize:12.5 });

  // right callout column
  const cds = [
    { v:"77%",    l:"Higher work absenteeism — Black vs White women", c:C.amber },
    { v:"25%",    l:"Women say fibroids limited career potential", c:C.blue },
    { v:"$2.1B",  l:"Annual inpatient surgery cost (US alone)", c:C.red },
    { v:"240K",   l:"Hysterectomies/year in US for fibroids", c:C.teal },
  ];
  cds.forEach((cd,i) => {
    const y = 1.28 + i*1.06;
    s.addShape(pres.ShapeType.roundRect, {
      x:6.75, y, w:3.0, h:0.95,
      fill:{color:C.light}, line:{color:cd.c, width:1.2}, rectRadius:0.1,
    });
    s.addText(cd.v, { x:6.8, y:y+0.05, w:1.0, h:0.82, fontSize:22, bold:true, color:cd.c, align:"center", valign:"middle", fontFace:"Calibri" });
    s.addText(cd.l, { x:7.82, y:y+0.12, w:1.85, h:0.7, fontSize:10, color:C.text, fontFace:"Calibri", wrap:true });
  });
}

// ═══════════════════════════════════════════
// SLIDE 7 – REPRODUCTIVE HEALTH & FERTILITY QoL
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Reproductive Health & Fertility", C.blue);
  slideTitle(s, "Impact on Reproductive Goals & Fertility");
  rule(s);

  // intro sentence
  s.addText("Reproductive morbidity is a uniquely devastating dimension of fibroid-related QoL — especially for women who have not yet completed their families.", {
    x:0.5, y:1.25, w:9, h:0.6,
    fontSize:12.5, color:C.sub, italic:true, fontFace:"Calibri",
  });

  const rcards = [
    {
      title:"Infertility & Implantation",
      color:C.teal,
      fill:"F0FFF8",
      items:[
        "Submucosal fibroids: most harmful — distort endometrial cavity",
        "Decrease fertility; removal (hysteroscopic myomectomy) improves fertility rates",
        "Intramural fibroids may slightly decrease fertility",
        "Subserosal fibroids do not affect fertility (Berek & Novak)",
        "Altered endometrial receptivity: impaired implantation and early placentation",
      ],
    },
    {
      title:"Pregnancy Complications",
      color:C.amber,
      fill:"FFFAF0",
      items:[
        "Placenta praevia: OR 2.2",
        "Placental abruption: OR 2.6",
        "Preterm labour, malpresentation, caesarean section",
        "Postpartum haemorrhage",
        "Red (carneous) degeneration: acute severe pain in pregnancy",
      ],
    },
    {
      title:"Recurrent Pregnancy Loss",
      color:C.red,
      fill:"FFF4F4",
      items:[
        "Cavity-distorting fibroids strongly associated with recurrent miscarriage",
        "Emotional impact of repeated pregnancy loss on top of chronic fibroid disease is profound",
        "Fear of not being able to carry a pregnancy to term",
        "Reproductive grief: cycle of hope → loss → anxiety",
      ],
    },
    {
      title:"Psychological Dimension",
      color:C.amethyst,
      fill:"FBF0FF",
      items:[
        "Infertility diagnosis compounds existing anxiety and depression",
        "Hysterectomy feared particularly by women desiring future pregnancy",
        "Cultural stigma attached to infertility in many populations",
        "Loss of reproductive identity affects self-worth and marital relationships",
      ],
    },
  ];
  const rpos = [
    { x:0.28, y:1.92 }, { x:5.08, y:1.92 },
    { x:0.28, y:3.72 }, { x:5.08, y:3.72 },
  ];
  rcards.forEach((c,i) => {
    const p = rpos[i];
    s.addShape(pres.ShapeType.roundRect, { x:p.x, y:p.y, w:4.62, h:1.7, fill:{color:c.fill}, line:{color:c.color, width:1.1}, rectRadius:0.1 });
    s.addText(c.title, { x:p.x+0.12, y:p.y+0.06, w:4.38, h:0.35, fontSize:12, bold:true, color:c.color, fontFace:"Calibri" });
    s.addText(c.items.map((t,i2)=>({ text:t, options:{ bullet:{indent:10}, breakLine:i2<c.items.length-1 } })), {
      x:p.x+0.14, y:p.y+0.42, w:4.32, h:1.2, fontSize:10, color:C.text, fontFace:"Calibri",
    });
  });
}

// ═══════════════════════════════════════════
// SLIDE 8 – RACIAL DISPARITIES IN QoL
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Racial Disparities in QoL Burden", C.blue);
  slideTitle(s, "Racial Inequities: Who Bears the Greatest Burden?");
  rule(s);

  // left
  s.addShape(pres.ShapeType.roundRect, { x:0.28, y:1.28, w:4.65, h:4.05, fill:{color:C.light}, line:{color:C.red, width:1.2}, rectRadius:0.1 });
  s.addText("Black / African American Women", { x:0.4, y:1.36, w:4.4, h:0.38, fontSize:13, bold:true, color:C.red, fontFace:"Calibri" });
  const blk = [
    "Incidence 2.9× higher than White women (Berek & Novak)",
    "Cumulative incidence >80% by age 50",
    "Fibroids diagnosed at younger ages; larger and more numerous",
    "77% more likely to miss work due to fibroid symptoms",
    "Greater severity of HMB, pain, and anaemia",
    "Higher rates of hysterectomy despite comparable desire for fertility preservation",
    "Less access to minimally invasive and uterine-sparing procedures",
    "Healthcare access barriers, delayed diagnosis, implicit provider bias",
    "Cultural stigma and silence: reluctance to disclose symptoms",
    "Marsh et al. (JAMA 2024): racial disparities in treatment pathways are critical public health concern",
  ];
  s.addText(blk.map((t,i)=>({ text:t, options:{ bullet:{indent:12}, breakLine:i<blk.length-1 } })), {
    x:0.42, y:1.76, w:4.38, h:3.45, fontSize:11, color:C.text, fontFace:"Calibri",
  });

  // right
  s.addShape(pres.ShapeType.roundRect, { x:5.2, y:1.28, w:4.5, h:4.05, fill:{color:"FFF8EE"}, line:{color:C.amber, width:1.2}, rectRadius:0.1 });
  s.addText("Disparities in QoL Domains", { x:5.32, y:1.36, w:4.26, h:0.38, fontSize:13, bold:true, color:C.amber, fontFace:"Calibri" });
  const dispQol = [
    "Black women score consistently lower on ALL UFS-QoL subscales",
    "Greater impairment in Activities, Energy/Mood, Control, and Self-consciousness",
    "Higher symptom severity scores at time of presentation",
    "Larger fibroid burden = worse physical and psychological QoL",
    "Less timely treatment = longer duration of impaired QoL",
    "Post-procedure QoL recovery slower in Black women",
    "Patient-centred, culturally tailored approaches ESSENTIAL for equitable care",
    "Shared decision-making must account for cultural context and patient values",
  ];
  s.addText(dispQol.map((t,i)=>({ text:t, options:{ bullet:{indent:12}, breakLine:i<dispQol.length-1 } })), {
    x:5.32, y:1.76, w:4.24, h:3.45, fontSize:11, color:C.text, fontFace:"Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 9 – MEASURING QoL: INSTRUMENTS & DATA
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.white);
  topBar(s, "Measuring Quality of Life", C.blue);
  slideTitle(s, "How We Measure QoL in Fibroids: Instruments & Evidence");
  rule(s);

  // UFS-QoL table layout
  s.addText("The UFS-QoL (37-item, validated) is the gold standard for measuring fibroid-specific HR-QoL. Higher SS score = worse symptoms; Higher HR-QoL score = better quality of life.", {
    x:0.5, y:1.28, w:9, h:0.55,
    fontSize:11.5, color:C.sub, italic:true, fontFace:"Calibri",
  });

  // Subscale data table
  const rows = [
    ["Subscale",           "Mean Score (0–100)",  "What It Measures"],
    ["Symptom Severity",   "34.6 ± 13.6",         "Bleeding, pain, pressure, fatigue — higher = worse"],
    ["Concern",            "63.2 ± 18.3",          "Worry about health, fibroid growth, future complications"],
    ["Activities",         "62.9 ± 17.4",          "Impact on daily physical activities & exercise"],
    ["Energy / Mood",      "61.5 ± 15.5",          "Fatigue, sadness, hopelessness, emotional drain"],
    ["Control",            "58.7 ± 17.9",          "Sense of control over life despite symptoms"],
    ["Self-consciousness", "58.3 ± 20.1",          "Body image, embarrassment, physical appearance"],
    ["Sexual Function",    "61.4 ± 23.5",          "Dyspareunia, libido, intimacy & sexual satisfaction"],
  ];
  const tw = [2.7, 2.0, 4.8];
  const rowH = 0.41;
  rows.forEach((row, ri) => {
    const y = 1.9 + ri * rowH;
    const fillC = ri === 0 ? C.blue : (ri%2===0 ? "EAF0FA" : C.white);
    const textC = ri === 0 ? C.white : C.text;
    let cx = 0.4;
    row.forEach((cell, ci) => {
      s.addShape(pres.ShapeType.rect, { x:cx-0.02, y, w:tw[ci]+0.04, h:rowH, fill:{color:fillC}, line:{color:"C5D5EA", width:0.4} });
      s.addText(cell, { x:cx+0.05, y:y+0.04, w:tw[ci]-0.05, h:rowH-0.08, fontSize:ri===0?10:10, bold:ri===0, color:textC, fontFace:"Calibri", valign:"middle" });
      cx += tw[ci];
    });
  });

  // bottom note
  s.addText("Source: Sefogah et al., BMC Women's Health 2025 (Korle Bu Teaching Hospital, Ghana, n=163). 83.4% reported moderate-to-very important QoL impact.", {
    x:0.4, y:5.22, w:9.2, h:0.38,
    fontSize:9, color:C.sub, italic:true, fontFace:"Calibri",
  });
}

// ═══════════════════════════════════════════
// SLIDE 10 – KEY TAKEAWAYS
// ═══════════════════════════════════════════
{
  const s = pres.addSlide();
  bg(s, C.navy);
  s.addShape(pres.ShapeType.rect, { x:0, y:0, w:10, h:0.08, fill:{color:C.red}, line:{type:"none"} });
  s.addShape(pres.ShapeType.rect, { x:0, y:5.54, w:10, h:0.085, fill:{color:C.gold}, line:{type:"none"} });

  s.addText("KEY TAKEAWAYS", {
    x:0.5, y:0.12, w:9, h:0.52,
    fontSize:18, bold:true, color:C.white, fontFace:"Calibri", align:"center", charSpacing:2,
  });

  const tks = [
    { n:"1", t:"Fibroids impair QoL across ALL domains — physical, mental, sexual, social, and occupational — not just heavy periods." },
    { n:"2", t:"The psychological burden is profound and under-recognised: >40% of women feel sad or discouraged; fear, anxiety, and depression are consistent findings." },
    { n:"3", t:"Sexual health and body image suffer significantly and must be actively explored in clinical consultations." },
    { n:"4", t:"Work absenteeism, career limitation, and economic toxicity are real consequences of symptomatic fibroid disease." },
    { n:"5", t:"Racial disparities are stark — Black women bear the greatest disease and QoL burden, compounded by inequitable access to care. Culturally tailored, patient-centred practice is not optional." },
  ];
  tks.forEach((tk,i) => {
    const y = 0.82 + i * 0.92;
    s.addShape(pres.ShapeType.ellipse, { x:0.38, y:y+0.08, w:0.48, h:0.48, fill:{color:C.red}, line:{type:"none"} });
    s.addText(tk.n, { x:0.38, y:y+0.1, w:0.48, h:0.4, fontSize:13, bold:true, color:C.white, align:"center", fontFace:"Calibri" });
    s.addText(tk.t, { x:1.02, y:y+0.04, w:8.7, h:0.7, fontSize:12, color:"D4E6F5", fontFace:"Calibri" });
  });

  // References strip
  s.addShape(pres.ShapeType.rect, { x:0, y:5.05, w:10, h:0.49, fill:{color:"0C1E32"}, line:{type:"none"} });
  s.addText("References: Marsh et al. JAMA 2024 | Neumann et al. Fertil Steril 2024 | Yang et al. BMC Women's Health 2025 | Sefogah et al. BMC Women's Health 2025 | Berek & Novak's Gynecology | Goldman-Cecil Medicine | UFS-QoL (Spies et al.)", {
    x:0.2, y:5.06, w:9.6, h:0.42,
    fontSize:7.5, color:"6A8FAC", fontFace:"Calibri", italic:true,
  });
}

// ── Write ────────────────────────────────────
pres.writeFile({ fileName: "/home/daytona/workspace/uterine-fibroids-ppt/UF_QoL_Presentation.pptx" })
  .then(() => console.log("DONE"))
  .catch(err => { console.error(err); process.exit(1); });
Running Command

cd /home/daytona/workspace/uterine-fibroids-ppt && node create_qol_pptx.js 2>&1

Running Command

cp /home/daytona/workspace/uterine-fibroids-ppt/UF_QoL_Presentation.pptx /tmp/uf_qol.pptx && libreoffice --headless --convert-to pdf /tmp/uf_qol.pptx --outdir /tmp/ 2>&1 && ls -lh /tmp/uf_qol.pdf && cp /tmp/uf_qol.pdf /home/daytona/workspace/uterine-fibroids-ppt/UF_QoL_Presentation.pdf

Your focused QoL-only presentation is ready:
PDF:

UF QoL Presentation

PDF Document · PDF

PPTX (editable):

UF QoL Presentation

Presentation · PPTX


What's inside — 10 slides, exclusively on impact

SlideFocus
1 - TitleDark navy design with 4 headline impact stats (40-89% prevalence, 2/3 feel worn out, 40% feel sad, $34B burden)
2 - Scope of the ProblemWhy fibroids matter for women's health; UFS-QoL 7-domain framework introduced
3 - Physical Health Impact4-card grid: AUB/anaemia, pelvic pain/pressure, reproductive health, general health consequences
4 - Mental Health & Emotional WellbeingDepression, anxiety, fear, grief, pre-planning burden — backed by Neumann 2024, Yang 2025, Ghana study 2025
5 - Sexual Health & Body ImageDyspareunia, reduced libido, body image distortion, partner relationship strain, cultural silence
6 - Social, Occupational & Economic Impact77% higher work absence (Black women), 25% career limitation, $2.1B surgical costs — 4 callout stat boxes
7 - Reproductive Goals & FertilityInfertility mechanisms by fibroid type, pregnancy complications with ORs, recurrent loss, reproductive grief
8 - Racial Disparities in QoLBlack women bear 2.9× higher burden, worse on all UFS-QoL subscales, less equitable access to care
9 - Measuring QoL: Instruments & DataUFS-QoL subscale data table with mean scores from Ghana 2025 study; clinical utility explained
10 - Key Takeaways5 evidence-based points summarizing the breadth of QoL impact + full reference strip

Paper presentation on Uterine Fibroids Impact only on Women’s Health and Quality of Life for gynec resident

I just created this exact presentation for you. Both files are ready to download:
PDF:

UF QoL Presentation

PDF Document · PDF

PPTX (editable):

UF QoL Presentation

Presentation · PPTX

It's a 10-slide presentation focused exclusively on the impact of uterine fibroids on women's health and quality of life — no treatment/management content. Here's a quick recap of what's covered:
SlideTopic
1Title slide with 4 key impact statistics
2Scope of the problem + UFS-QoL framework
3Physical health impact (bleeding, pain, anaemia, reproductive)
4Mental health & emotional wellbeing
5Sexual health & body image
6Social, occupational & economic impact
7Reproductive goals & fertility impact
8Racial disparities in QoL burden
9Measuring QoL — UFS-QoL subscale data table
10Key takeaways + references
If you need any changes — different slide count, added content, different color scheme, or speaker notes — just let me know.

Paper presentation on Uterine Fibroids Impact only on Women’s Health and Quality of Life for gynec resident

The presentation already exists and is ready for download:
PDF:

UF QoL Presentation

PDF Document · PDF

PPTX (editable):

UF QoL Presentation

Presentation · PPTX

This is a 10-slide PDF presentation focused exclusively on the impact of uterine fibroids on women's health and quality of life, designed for a gynecology residency audience. It covers:
  1. Title + key statistics
  2. Scope of the problem
  3. Physical health impact
  4. Mental health & emotional wellbeing
  5. Sexual health & body image
  6. Social, occupational & economic impact
  7. Reproductive goals & fertility
  8. Racial disparities in QoL
  9. Measuring QoL (UFS-QoL instrument & data)
  10. Key takeaways + references
Would you like any modifications — such as adding speaker notes, changing the design, or expanding/reducing any section?

Make a comparison infographic: QoL impact by domain

Generating Image

Medical infographic comparing Quality of Life impact by domain in women with uterine fibroids. Clean, professional clinical style on a dark navy background. Show 6 QoL domains as a horizontal bar chart comparison with labeled scores (0-100 scale, higher = better QoL): Concern 63.2, Activities 62.9, Energy/Mood 61.5, Sexual Function 61.4, Control 58.7, Self-consciousness 58.3. Each bar should be color-coded differently (red, orange, teal, purple, blue, amber). Include a separate highlighted "Symptom Severity Score: 34.6" in a callout box (higher = worse symptoms, inverted scale). Add a bold title at top: "Uterine Fibroids: QoL Impact by Domain (UFS-QoL)". Include subtitle "Source: Sefogah et al., BMC Women's Health 2025 | n=163 women". Below the chart, add 3 key insight callouts: "83.4% reported moderate-to-severe QoL impact", "Self-consciousness & Control: lowest HR-QoL scores", "Energy/Mood & Sexual Function severely impaired". Modern medical infographic aesthetic with clear typography, data labels on each bar, and a legend.

Uterine Fibroids QoL Impact by Domain
Here's the QoL comparison infographic. It shows:
  • Horizontal bar chart of all 6 HR-QoL subscales from the UFS-QoL, scored 0–100 (higher = better QoL)
  • Self-consciousness (58.3) and Control (58.7) are the most impaired domains
  • Symptom Severity Score of 34.6 highlighted separately (on this scale, higher = worse symptoms)
  • Key insight callouts at the bottom with the headline finding that 83.4% of women reported moderate-to-severe QoL impact
Source data: Sefogah et al., BMC Women's Health 2025 (Korle Bu Teaching Hospital, Ghana, n = 163)
Would you like this saved as a PNG/PDF file for download, or would you like a different style — for example, a radar/spider chart, a side-by-side comparison (symptomatic vs. asymptomatic women), or a version comparing pre- vs. post-treatment scores?
This is a shared conversation. Sign in to Orris to start your own chat.