1124 lines
26 KiB
HTML
1124 lines
26 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Clinical Record — Chalk</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
|
|
<style>
|
|
/* ========================================
|
|
CHALK — Ultra-minimal clinical luxury
|
|
======================================== */
|
|
|
|
*, *::before, *::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--white: #FFFFFF;
|
|
--off-white: #FAFAFA;
|
|
--sidebar-bg: #F7F7F7;
|
|
--border: #E5E5E5;
|
|
--border-light: #EFEFEF;
|
|
--accent: #005EB8;
|
|
--accent-light: #EBF3FC;
|
|
--text-primary: #1A1A1A;
|
|
--text-secondary: #666666;
|
|
--text-muted: #999999;
|
|
--text-faint: #BBBBBB;
|
|
--green-dot: #34C759;
|
|
--green-text: #2D8A4E;
|
|
--amber-text: #B8860B;
|
|
--sidebar-width: 220px;
|
|
--banner-height: 72px;
|
|
--font-sans: 'Instrument Sans', -apple-system, sans-serif;
|
|
--font-mono: 'IBM Plex Mono', 'Geist Mono', monospace;
|
|
}
|
|
|
|
html {
|
|
font-size: 14px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-sans);
|
|
color: var(--text-primary);
|
|
background: var(--off-white);
|
|
line-height: 1.5;
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Layout Shell
|
|
---------------------------------------- */
|
|
|
|
.layout {
|
|
display: grid;
|
|
grid-template-columns: var(--sidebar-width) 1fr;
|
|
grid-template-rows: var(--banner-height) 1fr;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Sidebar
|
|
---------------------------------------- */
|
|
|
|
.sidebar {
|
|
grid-row: 1 / -1;
|
|
grid-column: 1;
|
|
background: var(--sidebar-bg);
|
|
border-right: 1px solid var(--border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
z-index: 10;
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.sidebar-brand {
|
|
padding: 0 24px 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.sidebar-brand-icon {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 6px;
|
|
background: var(--accent);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--white);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.sidebar-brand-icon svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.sidebar-brand-text {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.sidebar-brand-sub {
|
|
font-size: 10px;
|
|
font-weight: 400;
|
|
color: var(--text-muted);
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.sidebar-nav {
|
|
flex: 1;
|
|
padding: 0;
|
|
}
|
|
|
|
.sidebar-section-label {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.12em;
|
|
color: var(--text-faint);
|
|
padding: 0 24px 8px;
|
|
}
|
|
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 9px 24px;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
transition: background 0.15s ease, color 0.15s ease;
|
|
border-left: 3px solid transparent;
|
|
text-decoration: none;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-item:hover {
|
|
background: rgba(0, 0, 0, 0.02);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.nav-item.active {
|
|
border-left-color: var(--accent);
|
|
color: var(--accent);
|
|
font-weight: 600;
|
|
background: var(--white);
|
|
}
|
|
|
|
.nav-item svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
stroke-width: 1.5;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.nav-item .nav-key {
|
|
margin-left: auto;
|
|
font-family: var(--font-mono);
|
|
font-size: 10px;
|
|
color: var(--text-faint);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.nav-item.active .nav-key {
|
|
color: var(--accent);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.sidebar-footer {
|
|
padding: 16px 24px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.sidebar-footer-line {
|
|
font-size: 11px;
|
|
color: var(--text-faint);
|
|
font-family: var(--font-mono);
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.sidebar-footer-dot {
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--green-dot);
|
|
margin-right: 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Patient Banner
|
|
---------------------------------------- */
|
|
|
|
.banner {
|
|
grid-row: 1;
|
|
grid-column: 2;
|
|
background: var(--white);
|
|
border-bottom: 1px solid var(--border);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 40px;
|
|
z-index: 5;
|
|
}
|
|
|
|
.banner-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
|
|
.banner-name-group {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 12px;
|
|
}
|
|
|
|
.banner-name {
|
|
font-size: 26px;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
letter-spacing: -0.02em;
|
|
line-height: 1;
|
|
}
|
|
|
|
.banner-title {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.banner-status-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.banner-status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--green-text);
|
|
}
|
|
|
|
.banner-status-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--green-dot);
|
|
}
|
|
|
|
.banner-badge {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--accent);
|
|
padding: 3px 10px;
|
|
border: 1px solid var(--accent);
|
|
border-radius: 100px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.banner-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.banner-meta-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1px;
|
|
}
|
|
|
|
.banner-meta-label {
|
|
font-size: 9.5px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
.banner-meta-value {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
.banner-divider {
|
|
width: 1px;
|
|
height: 28px;
|
|
background: var(--border);
|
|
}
|
|
|
|
.banner-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.banner-action {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 14px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
background: transparent;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
font-family: var(--font-sans);
|
|
}
|
|
|
|
.banner-action:hover {
|
|
border-color: var(--text-muted);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.banner-action.primary {
|
|
background: var(--accent);
|
|
color: var(--white);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.banner-action.primary:hover {
|
|
background: #004C93;
|
|
border-color: #004C93;
|
|
}
|
|
|
|
.banner-action svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
stroke-width: 1.5;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Content Area
|
|
---------------------------------------- */
|
|
|
|
.content {
|
|
grid-row: 2;
|
|
grid-column: 2;
|
|
overflow-y: auto;
|
|
padding: 32px 40px 60px;
|
|
background: var(--off-white);
|
|
}
|
|
|
|
.content::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.content::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
.content::-webkit-scrollbar-thumb {
|
|
background: var(--border);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.content::-webkit-scrollbar-thumb:hover {
|
|
background: var(--text-faint);
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Clinical Alert
|
|
---------------------------------------- */
|
|
|
|
.alert {
|
|
background: var(--white);
|
|
border-left: 2px solid var(--accent);
|
|
padding: 14px 20px;
|
|
margin-bottom: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.alert-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.alert-label {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.alert-text {
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.alert-text strong {
|
|
font-weight: 600;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.alert-dismiss {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: var(--text-faint);
|
|
padding: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: color 0.15s ease;
|
|
}
|
|
|
|
.alert-dismiss:hover {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.alert-dismiss svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
stroke-width: 1.5;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Page Header
|
|
---------------------------------------- */
|
|
|
|
.page-header {
|
|
font-size: 28px;
|
|
font-weight: 300;
|
|
color: var(--text-primary);
|
|
letter-spacing: -0.02em;
|
|
margin-bottom: 32px;
|
|
line-height: 1;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Cards
|
|
---------------------------------------- */
|
|
|
|
.cards-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 24px;
|
|
}
|
|
|
|
.card {
|
|
background: var(--white);
|
|
border-radius: 4px;
|
|
padding: 28px 28px 24px;
|
|
transition: box-shadow 0.2s ease;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 16px rgba(0, 0, 0, 0.03);
|
|
}
|
|
|
|
.card.full {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.card-header {
|
|
font-size: 10.5px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.15em;
|
|
color: var(--text-muted);
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.card-header svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
stroke-width: 1.5;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Demographics Table
|
|
---------------------------------------- */
|
|
|
|
.demo-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0;
|
|
}
|
|
|
|
.demo-row {
|
|
display: flex;
|
|
align-items: baseline;
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid var(--border-light);
|
|
}
|
|
|
|
.demo-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.demo-label {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
width: 110px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.demo-value {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.demo-value.mono {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.demo-value .status-active {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
color: var(--green-text);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.demo-value .status-active::before {
|
|
content: '';
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: var(--green-dot);
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Problems List
|
|
---------------------------------------- */
|
|
|
|
.problem-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--border-light);
|
|
}
|
|
|
|
.problem-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.problem-status {
|
|
margin-top: 3px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.problem-status-dot {
|
|
width: 7px;
|
|
height: 7px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.problem-status-dot.active {
|
|
background: var(--green-dot);
|
|
}
|
|
|
|
.problem-status-dot.in-progress {
|
|
background: #F59E0B;
|
|
}
|
|
|
|
.problem-text {
|
|
font-size: 13px;
|
|
color: var(--text-primary);
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.problem-meta {
|
|
font-size: 11px;
|
|
color: var(--text-faint);
|
|
margin-top: 2px;
|
|
font-family: var(--font-mono);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.problem-label {
|
|
font-size: 10px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.problem-label.active-label {
|
|
color: var(--green-text);
|
|
}
|
|
|
|
.problem-label.progress-label {
|
|
color: var(--amber-text);
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Medications Table
|
|
---------------------------------------- */
|
|
|
|
.med-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.med-table thead th {
|
|
font-size: 10.5px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--text-faint);
|
|
text-align: left;
|
|
padding: 0 0 10px;
|
|
border-bottom: 1px solid var(--border-light);
|
|
}
|
|
|
|
.med-table tbody td {
|
|
font-size: 13px;
|
|
color: var(--text-primary);
|
|
padding: 9px 0;
|
|
border-bottom: 1px solid var(--border-light);
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.med-table tbody tr:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.med-table tbody tr {
|
|
transition: background 0.1s ease;
|
|
}
|
|
|
|
.med-table tbody tr:hover {
|
|
background: var(--off-white);
|
|
}
|
|
|
|
.med-drug {
|
|
font-weight: 500;
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.med-dose {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.med-freq {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.med-status {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--green-text);
|
|
}
|
|
|
|
.med-status::before {
|
|
content: '';
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: var(--green-dot);
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Last Consultation
|
|
---------------------------------------- */
|
|
|
|
.consult-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 14px;
|
|
border-bottom: 1px solid var(--border-light);
|
|
}
|
|
|
|
.consult-meta-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.consult-meta-label {
|
|
font-size: 9.5px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
.consult-meta-value {
|
|
font-size: 12.5px;
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.consult-meta-value.mono {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.consult-meta-divider {
|
|
width: 1px;
|
|
height: 28px;
|
|
background: var(--border-light);
|
|
}
|
|
|
|
.consult-role {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.consult-summary {
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.65;
|
|
max-width: 680px;
|
|
}
|
|
|
|
/* ----------------------------------------
|
|
Utility
|
|
---------------------------------------- */
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="layout">
|
|
|
|
<!-- ====================================
|
|
SIDEBAR
|
|
==================================== -->
|
|
<aside class="sidebar" role="navigation" aria-label="Clinical record navigation">
|
|
|
|
<div class="sidebar-brand">
|
|
<div class="sidebar-brand-icon">
|
|
<i data-lucide="heart-pulse"></i>
|
|
</div>
|
|
<div>
|
|
<div class="sidebar-brand-text">ClinicalRecord</div>
|
|
<div class="sidebar-brand-sub">Patient Management</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="sidebar-section-label">Record</div>
|
|
|
|
<nav class="sidebar-nav">
|
|
<a class="nav-item active" href="#summary">
|
|
<i data-lucide="layout-dashboard"></i>
|
|
Summary
|
|
<span class="nav-key">1</span>
|
|
</a>
|
|
<a class="nav-item" href="#experience">
|
|
<i data-lucide="briefcase"></i>
|
|
Experience
|
|
<span class="nav-key">2</span>
|
|
</a>
|
|
<a class="nav-item" href="#skills">
|
|
<i data-lucide="cpu"></i>
|
|
Skills
|
|
<span class="nav-key">3</span>
|
|
</a>
|
|
<a class="nav-item" href="#achievements">
|
|
<i data-lucide="award"></i>
|
|
Achievements
|
|
<span class="nav-key">4</span>
|
|
</a>
|
|
<a class="nav-item" href="#projects">
|
|
<i data-lucide="folder-open"></i>
|
|
Projects
|
|
<span class="nav-key">5</span>
|
|
</a>
|
|
<a class="nav-item" href="#education">
|
|
<i data-lucide="graduation-cap"></i>
|
|
Education
|
|
<span class="nav-key">6</span>
|
|
</a>
|
|
<a class="nav-item" href="#contact">
|
|
<i data-lucide="mail"></i>
|
|
Contact
|
|
<span class="nav-key">7</span>
|
|
</a>
|
|
</nav>
|
|
|
|
<div class="sidebar-footer">
|
|
<div class="sidebar-footer-line">
|
|
<span class="sidebar-footer-dot"></span>A.CHARLWOOD
|
|
</div>
|
|
<div class="sidebar-footer-line" id="session-time"></div>
|
|
</div>
|
|
|
|
</aside>
|
|
|
|
<!-- ====================================
|
|
PATIENT BANNER
|
|
==================================== -->
|
|
<header class="banner" role="banner">
|
|
|
|
<div class="banner-left">
|
|
<div>
|
|
<div class="banner-name-group">
|
|
<span class="banner-name">CHARLWOOD, Andrew</span>
|
|
<span class="banner-title">(Mr)</span>
|
|
</div>
|
|
<div class="banner-status-group" style="margin-top: 6px;">
|
|
<span class="banner-status">
|
|
<span class="banner-status-dot"></span>
|
|
Active
|
|
</span>
|
|
<span class="banner-badge">Open to opportunities</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="banner-divider"></div>
|
|
|
|
<div class="banner-meta">
|
|
<div class="banner-meta-item">
|
|
<span class="banner-meta-label">DOB</span>
|
|
<span class="banner-meta-value">14/02/1993</span>
|
|
</div>
|
|
<div class="banner-meta-item">
|
|
<span class="banner-meta-label">NHS No</span>
|
|
<span class="banner-meta-value">221 181 0</span>
|
|
</div>
|
|
<div class="banner-meta-item">
|
|
<span class="banner-meta-label">Location</span>
|
|
<span class="banner-meta-value">Norwich, NR1</span>
|
|
</div>
|
|
<div class="banner-meta-item">
|
|
<span class="banner-meta-label">Phone</span>
|
|
<span class="banner-meta-value">07795553088</span>
|
|
</div>
|
|
<div class="banner-meta-item">
|
|
<span class="banner-meta-label">Email</span>
|
|
<span class="banner-meta-value">andy@charlwood.xyz</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="banner-right">
|
|
<button class="banner-action primary">
|
|
<i data-lucide="download"></i>
|
|
Download CV
|
|
</button>
|
|
<button class="banner-action">
|
|
<i data-lucide="mail"></i>
|
|
Email
|
|
</button>
|
|
<button class="banner-action">
|
|
<i data-lucide="linkedin"></i>
|
|
LinkedIn
|
|
</button>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<!-- ====================================
|
|
CONTENT
|
|
==================================== -->
|
|
<main class="content" role="main">
|
|
|
|
<!-- Clinical Alert -->
|
|
<div class="alert" role="alert" id="clinical-alert">
|
|
<div class="alert-content">
|
|
<span class="alert-label">Alert</span>
|
|
<span class="alert-text">This patient has identified <strong>£14.6M in prescribing efficiency savings</strong> across Norfolk & Waveney ICS.</span>
|
|
</div>
|
|
<button class="alert-dismiss" aria-label="Dismiss alert" onclick="document.getElementById('clinical-alert').style.display='none'">
|
|
<i data-lucide="x"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Page Header -->
|
|
<h1 class="page-header">Summary</h1>
|
|
|
|
<!-- Cards Grid -->
|
|
<div class="cards-grid">
|
|
|
|
<!-- Card: Patient Demographics (full width) -->
|
|
<div class="card full">
|
|
<div class="card-header">
|
|
<i data-lucide="user"></i>
|
|
Patient Demographics
|
|
</div>
|
|
<div class="demo-grid">
|
|
<div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">Name</span>
|
|
<span class="demo-value">Andrew Charlwood</span>
|
|
</div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">DOB</span>
|
|
<span class="demo-value mono">14/02/1993</span>
|
|
</div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">Registration</span>
|
|
<span class="demo-value mono">GPhC 2211810</span>
|
|
</div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">Qualification</span>
|
|
<span class="demo-value">MPharm (Hons) 2:1</span>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">Status</span>
|
|
<span class="demo-value"><span class="status-active">Active</span></span>
|
|
</div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">Location</span>
|
|
<span class="demo-value">Norwich, NR1</span>
|
|
</div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">Since</span>
|
|
<span class="demo-value mono">August 2016</span>
|
|
</div>
|
|
<div class="demo-row">
|
|
<span class="demo-label">University</span>
|
|
<span class="demo-value">UEA, 2015</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Card: Active Problems (half width) -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<i data-lucide="alert-circle"></i>
|
|
Active Problems
|
|
</div>
|
|
|
|
<div class="problem-item">
|
|
<div class="problem-status">
|
|
<div class="problem-status-dot active"></div>
|
|
</div>
|
|
<div>
|
|
<div class="problem-text">£220M prescribing budget oversight</div>
|
|
<div style="display: flex; align-items: center; gap: 10px; margin-top: 3px;">
|
|
<span class="problem-label active-label">Active</span>
|
|
<span class="problem-meta">Jul 2024</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="problem-item">
|
|
<div class="problem-status">
|
|
<div class="problem-status-dot in-progress"></div>
|
|
</div>
|
|
<div>
|
|
<div class="problem-text">Patient-level SQL analytics transformation</div>
|
|
<div style="display: flex; align-items: center; gap: 10px; margin-top: 3px;">
|
|
<span class="problem-label progress-label">In Progress</span>
|
|
<span class="problem-meta">2025</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="problem-item">
|
|
<div class="problem-status">
|
|
<div class="problem-status-dot in-progress"></div>
|
|
</div>
|
|
<div>
|
|
<div class="problem-text">Team data literacy programme</div>
|
|
<div style="display: flex; align-items: center; gap: 10px; margin-top: 3px;">
|
|
<span class="problem-label progress-label">In Progress</span>
|
|
<span class="problem-meta">Jul 2024</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Card: Current Medications (half width) -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<i data-lucide="pill"></i>
|
|
Current Medications
|
|
</div>
|
|
<table class="med-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Drug</th>
|
|
<th>Dose</th>
|
|
<th>Freq</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="med-drug">Python</td>
|
|
<td class="med-dose">90%</td>
|
|
<td class="med-freq">Daily</td>
|
|
<td><span class="med-status">Active</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="med-drug">SQL</td>
|
|
<td class="med-dose">88%</td>
|
|
<td class="med-freq">Daily</td>
|
|
<td><span class="med-status">Active</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="med-drug">Power BI</td>
|
|
<td class="med-dose">92%</td>
|
|
<td class="med-freq">Daily</td>
|
|
<td><span class="med-status">Active</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="med-drug">Data Analysis</td>
|
|
<td class="med-dose">95%</td>
|
|
<td class="med-freq">Daily</td>
|
|
<td><span class="med-status">Active</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="med-drug">JavaScript/TS</td>
|
|
<td class="med-dose">70%</td>
|
|
<td class="med-freq">Weekly</td>
|
|
<td><span class="med-status">Active</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Card: Last Consultation (full width) -->
|
|
<div class="card full">
|
|
<div class="card-header">
|
|
<i data-lucide="stethoscope"></i>
|
|
Last Consultation
|
|
</div>
|
|
|
|
<div class="consult-meta">
|
|
<div class="consult-meta-item">
|
|
<span class="consult-meta-label">Date</span>
|
|
<span class="consult-meta-value mono">14 May 2025</span>
|
|
</div>
|
|
<div class="consult-meta-divider"></div>
|
|
<div class="consult-meta-item">
|
|
<span class="consult-meta-label">Organisation</span>
|
|
<span class="consult-meta-value">NHS Norfolk & Waveney ICB</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="consult-role">Interim Head, Population Health & Data Analysis</div>
|
|
<p class="consult-summary">Led strategic delivery of population health initiatives and data-driven medicines optimisation across Norfolk & Waveney ICS.</p>
|
|
</div>
|
|
|
|
</div><!-- /cards-grid -->
|
|
|
|
</main>
|
|
|
|
</div><!-- /layout -->
|
|
|
|
<script>
|
|
// Initialize Lucide icons
|
|
lucide.createIcons();
|
|
|
|
// Session time
|
|
function updateTime() {
|
|
const now = new Date();
|
|
const h = String(now.getHours()).padStart(2, '0');
|
|
const m = String(now.getMinutes()).padStart(2, '0');
|
|
const s = String(now.getSeconds()).padStart(2, '0');
|
|
document.getElementById('session-time').textContent = h + ':' + m + ':' + s;
|
|
}
|
|
updateTime();
|
|
setInterval(updateTime, 1000);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|