
Callyzer-style UI package (Tailwind CDN-based)
Structure:
- theme/layout/header.html  : global header
- theme/layout/sidebar.html : sidebar (role-agnostic links sample)
- theme/layout/footer.html  : footer + script includes
- assets/css/custom.css     : minor Tailwind overrides
- assets/js/sidebar.js      : mobile sidebar toggle
- roles/ROLE/*.html         : role pages

How to use:
- Place the package on any static server (or open the HTML files in a browser).
- Pages reference assets with absolute paths starting from package root (/assets/...).
- For testing locally, run a simple HTTP server from the package root:
    python3 -m http.server 8000
  Then open http://localhost:8000/roles/super_admin/dashboard.html
