Status epilepticus
"status epilepticus" management treatment
cd /home/daytona/workspace/attachments/458bfdac-69b4-4493-a572-497687f39c98/ && python3 -c " import pdfplumber with pdfplumber.open('Part XXV -The Nervous System - Nelson 2024.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') # Search for status epilepticus for i, page in enumerate(pdf.pages): text = page.extract_text() or '' if 'status epilepticus' in text.lower() or 'Status Epilepticus' in text: print(f'Page {i+1}: found status epilepticus') " 2>&1 | head -40
python3 -c " import pdfplumber with pdfplumber.open('/home/daytona/workspace/attachments/458bfdac-69b4-4493-a572-497687f39c98/Part XXV -The Nervous System - Nelson 2024.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages[:5]): text = page.extract_text() or '' print(f'--- Page {i+1} ---') print(text[:300]) " 2>&1
python3 -c " import pdfplumber with pdfplumber.open('/home/daytona/workspace/attachments/458bfdac-69b4-4493-a572-497687f39c98/Part XXV -The Nervous System - Nelson 2024.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') results = [] for i, page in enumerate(pdf.pages): text = page.extract_text() or '' tl = text.lower() if 'status epilepticus' in tl or 'seizure' in tl: results.append(i+1) print('Pages with seizure/status epilepticus content:', results[:30]) " 2>&1
python3 -c " import pdfplumber, sys with pdfplumber.open('/home/daytona/workspace/attachments/458bfdac-69b4-4493-a572-497687f39c98/Part XXV -The Nervous System - Nelson 2024.pdf') as pdf: total = len(pdf.pages) print(f'Total: {total} pages') # Search first 50 pages for status epilepticus for i in range(min(50, total)): text = pdf.pages[i].extract_text() or '' if 'epilepticus' in text.lower(): print(f'--- Page {i+1} ---') print(text[:1500]) print() " 2>&1 | head -200
python3 -c " import pdfplumber with pdfplumber.open('/home/daytona/workspace/attachments/458bfdac-69b4-4493-a572-497687f39c98/Part XXV -The Nervous System - Nelson 2024.pdf') as pdf: total = len(pdf.pages) for i in range(50, total): text = pdf.pages[i].extract_text() or '' if 'epilepticus' in text.lower(): print(f'--- Page {i+1} ---') print(text[:2000]) print() " 2>&1 | head -300
| Type | Duration |
|---|---|
| Established SE | ≥5 min |
| Refractory SE | Persists despite 2 appropriately dosed anti-seizure therapies |
| Super-refractory SE | Persists ≥24 hours despite anesthetic coma (including when seizures recur on anesthetic withdrawal) |
SE is a neurologic emergency — treatment must begin within 5 minutes of onset. — Tintinalli's Emergency Medicine


Delays in benzodiazepine initiation >10 minutes are associated with higher mortality, longer seizure duration, and more complications. — Rosen's Emergency Medicine
| Drug | Route | Adult dose | Pediatric dose |
|---|---|---|---|
| Lorazepam (preferred if IV available) | IV | 2–4 mg (0.1 mg/kg) | 0.1 mg/kg IV (max 4 mg) |
| Midazolam (preferred if no IV) | IM | 10 mg (>40 kg) | 0.2 mg/kg (<13 kg); 5 mg (13–40 kg) |
| Diazepam | IV | 5–10 mg (0.15–0.2 mg/kg) | 0.2–0.5 mg/dose (< 5 yr); 1 mg/dose (≥5 yr) |
| Diazepam | Rectal | — | 0.5 mg/kg (max 20 mg) |
| Midazolam | Intranasal/buccal | — | Level B evidence |
| Phenobarbital | IV | — | 15 mg/kg single dose (if above unavailable) |
| Drug | Dose | Notes |
|---|---|---|
| Fosphenytoin (preferred over phenytoin) | 20 PE/kg IV at 150 PE/min (max 1500 PE) | Water-soluble phenytoin prodrug; can give IM; less cardiotoxic; infuses 3× faster |
| Levetiracetam | 60 mg/kg IV (max 4500 mg) | Fewer adverse events vs. phenytoin in some trials; no significant difference in seizure termination in controlled trials |
| Valproic acid | 40 mg/kg IV (max 3000 mg) | Contraindicated in liver disease, thrombocytopenia, suspected metabolic disease |
| Phenytoin | 20 mg/kg IV at ≤50 mg/min | Cardiotoxic; infusion-site reactions; not compatible with glucose solutions |
| Phenobarbital | 15 mg/kg IV | Alternative if others unavailable |
Current consensus guidelines do not recommend one second-line agent over the others. If seizures persist after first second-line agent, a second second-line agent may be tried before escalating to anesthetic therapy. — Tintinalli's/Rosen's
| Drug | Dose |
|---|---|
| Midazolam infusion | Load 0.2 mg/kg IV, then 0.05–2 mg/kg/h infusion |
| Propofol infusion | 1 mg/kg IV bolus, then 1–10 mg/kg/h |
| Phenobarbital | 20 mg/kg IV at 50–75 mg/min |
| Ketamine | 5 mg/kg/h (adjunct; evidence limited to case reports) |
All third-line agents cause apnea, depressed consciousness, and hypotension — effects more pronounced in the presence of benzodiazepines. Continuous cardiorespiratory monitoring is mandatory. — Rosen's Emergency Medicine