:root {
  --radius: 0.75rem;
  --background: lab(98.3099% -1.58331 -.665271);
  --foreground: lab(9.67724% -7.05269 -7.12507);
  --card: lab(100% 0 0);
  --card-foreground: lab(9.67724% -7.05269 -7.12507);
  --primary: lab(46.1726% -45.729 30.6816);
  --primary-foreground: lab(98.9075% -1.47587 .938177);
  --primary-glow: lab(67.1358% -44.8964 37.3064);
  --secondary: lab(94.4148% -6.52203 -2.02324);
  --secondary-foreground: lab(19.0508% -11.4749 -11.7986);
  --muted: lab(95.4581% -3.48285 -2.30824);
  --muted-foreground: lab(42.1739% -7.43759 -7.26721);
  --accent: lab(91.4975% -20.5249 1.8061);
  --accent-foreground: lab(13.2382% -11.1501 -11.7237);
  --destructive: lab(49.0306% 69.7939 45.0284);
  --destructive-foreground: lab(98.84% .0000298023 -.0000119209);
  --success: lab(57.8533% -48.2023 24.9084);
  --success-foreground: lab(98.84% .0000298023 -.0000119209);
  --warning: lab(74.342% 19.9794 67.2846);
  --warning-foreground: lab(7.01522% 10.6524 11.1717);
  --border: lab(88.5224% -4.34855 -2.88166);
  --input: lab(90.8424% -4.34896 -2.88198);
  --ring: lab(46.1726% -45.729 30.6816);
  --container-7xl: 80rem;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { letter-spacing: -0.02em; font-family: "Poppins", "Plus Jakarta Sans", ui-sans-serif, system-ui; }
.font-display { font-family: "Poppins", "Plus Jakarta Sans", ui-sans-serif, system-ui; }
.gradient-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%); }
.shadow-clinical { box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--primary) 35%, transparent); }

.container { max-width: 1120px; margin: 0 auto; padding: 1.5rem 1rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card-bg { background: color-mix(in oklab, var(--card) 95%, transparent); backdrop-filter: blur(8px); }

.input {
  display: flex; height: 36px; width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background: transparent; padding: 4px 12px;
  font-size: 14px; font-family: inherit; color: var(--foreground);
  transition: box-shadow .2s, border-color .2s;
}
.input:focus { outline: none; border-color: var(--ring); box-shadow: 0 0 0 1px var(--ring); }
select.input { cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap;
  border-radius: calc(var(--radius) - 2px);
  font-size: 14px; font-weight: 500;
  padding: 8px 16px; height: 36px;
  cursor: pointer; border: none; font-family: inherit;
  transition: opacity .2s, background .2s; text-decoration: none; line-height: 1;
}
.btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: .9; }
.btn-outline {
  background: var(--card); border: 1px solid var(--input);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--accent); color: var(--accent-foreground); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--accent); color: var(--accent-foreground); }
.btn-sm { height: 32px; padding: 4px 12px; font-size: 12px; }
.btn-lg { height: 44px; padding: 8px 32px; font-size: 16px; }
.btn-icon { width: 32px; height: 32px; padding: 0; }
.gradient-hero-btn { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%); color: var(--primary-foreground); }
.gradient-hero-btn:hover { opacity: .9; }

.badge {
  display: inline-flex; align-items: center;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent;
  padding: 2px 10px; font-size: 12px; font-weight: 600;
}
.badge-success { background: var(--success); color: var(--success-foreground); }
.badge-destructive { background: var(--destructive); color: var(--destructive-foreground); }
.badge-stunting {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: color-mix(in oklab, var(--destructive) 15%, transparent);
  color: var(--destructive);
  border: 1px solid color-mix(in oklab, var(--destructive) 40%, transparent);
}
.badge-normal {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: color-mix(in oklab, var(--success) 15%, transparent);
  color: var(--success);
  border: 1px solid color-mix(in oklab, var(--success) 40%, transparent);
}

.table-wrap { overflow-x: auto; border-radius: calc(var(--radius) - 2px); border: 1px solid var(--border); }
table.w-full { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 8px 12px; text-align: left; }
th { font-weight: 600; }
.sticky-top { position: sticky; top: 0; z-index: 10; }
.max-h-96 { max-height: 384px; overflow-y: auto; }
.border-t { border-top: 1px solid var(--border); }
.zebra-even { background: var(--card); }
.zebra-odd { background: color-mix(in oklab, var(--secondary) 40%, transparent); }
.table-hover tbody tr:hover { background: color-mix(in oklab, var(--primary) 5%, transparent); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 20%, transparent);
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--card);
  border: 2px solid color-mix(in oklab, var(--primary) 50%, transparent);
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  cursor: grab; transition: box-shadow .2s;
}
input[type="range"]::-webkit-slider-thumb:active {
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ring) 20%, transparent);
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--card);
  border: 2px solid color-mix(in oklab, var(--primary) 50%, transparent);
  cursor: grab;
}

.info-chip {
  border-radius: calc(var(--radius) - 2px);
  border-width: 2px; border-style: solid;
  padding: .75rem; display: flex; align-items: center; gap: .75rem;
}
.info-chip-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--card);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tone-primary { background: color-mix(in oklab, var(--primary) 10%, transparent); color: var(--primary); border-color: color-mix(in oklab, var(--primary) 30%, transparent); }
.tone-success { background: color-mix(in oklab, var(--success) 10%, transparent); color: var(--success); border-color: color-mix(in oklab, var(--success) 30%, transparent); }
.tone-warning { background: color-mix(in oklab, var(--warning) 10%, transparent); color: var(--warning); border-color: color-mix(in oklab, var(--warning) 30%, transparent); }

.toast {
  position: fixed; top: 1rem; right: 1rem; z-index: 9999;
  padding: 12px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  animation: slideIn .3s ease; max-width: 400px;
}
.toast-success { background: var(--success); color: var(--success-foreground); }
.toast-error { background: var(--destructive); color: var(--destructive-foreground); }
.toast-warning { background: var(--warning); color: var(--warning-foreground); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.space-y-8 > * + * { margin-top: 2rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-1 > * + * { margin-top: .25rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.gap-1 { gap: .25rem; }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.pb-3 { padding-bottom: .75rem; }
.pt-2 { padding-top: .5rem; }
.pl-9 { padding-left: 36px; }
.pr-10 { padding-right: 40px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }
.text-7xl { font-size: 72px; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-extrabold { font-weight: 800; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-none { line-height: 1; }
.tracking-wide { letter-spacing: .025em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.w-24 { width: 96px; }
.w-full { width: 100%; }
.h-11 { height: 44px; }
.h-14 { height: 56px; }
.h-72 { height: 288px; }
.h-auto { height: auto; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-5xl { max-width: 1024px; }
.max-w-7xl { max-width: 1280px; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-destructive { color: var(--destructive); }
.text-warning { color: var(--warning); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-success-foreground { color: var(--success-foreground); }
.text-destructive-foreground { color: var(--destructive-foreground); }
.text-card-foreground { color: var(--card-foreground); }
.text-white { color: #fff; }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-white { background: #fff; }
.bg-card\/95 { background: color-mix(in oklab, var(--card) 95%, transparent); }
.bg-success\/15 { background: color-mix(in oklab, var(--success) 15%, transparent); }
.bg-destructive\/10 { background: color-mix(in oklab, var(--destructive) 10%, transparent); }
.bg-destructive\/15 { background: color-mix(in oklab, var(--destructive) 15%, transparent); }
.bg-secondary\/40 { background: color-mix(in oklab, var(--secondary) 40%, transparent); }
.bg-secondary\/30 { background: color-mix(in oklab, var(--secondary) 30%, transparent); }
.bg-secondary\/60 { background: color-mix(in oklab, var(--secondary) 60%, transparent); }
.bg-primary\/15 { background: color-mix(in oklab, var(--primary) 15%, transparent); }
.bg-white\/15 { background: color-mix(in oklab, oklch(1 0 0) 15%, transparent); }
.bg-white\/20 { background: color-mix(in oklab, oklch(1 0 0) 20%, transparent); }
.bg-warning\/15 { background: color-mix(in oklab, var(--warning) 15%, transparent); }
.border-border\/60 { border-color: color-mix(in oklab, var(--border) 60%, transparent); }
.border-white\/60 { border-color: color-mix(in oklab, oklch(1 0 0) 60%, transparent); }
.border-4 { border-width: 4px; }
.backdrop-blur { backdrop-filter: blur(8px); }
.border { border: 1px solid var(--border); }
.border-2 { border-width: 2px; }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-r { border-right: 1px solid var(--border); }
.border-border { border-color: var(--border); }
.border-primary\/10 { border-color: color-mix(in oklab, var(--primary) 10%, transparent); }
.border-primary\/15 { border-color: color-mix(in oklab, var(--primary) 15%, transparent); }
.border-primary\/20 { border-color: color-mix(in oklab, var(--primary) 20%, transparent); }
.border-success\/30 { border-color: color-mix(in oklab, var(--success) 30%, transparent); }
.border-success\/40 { border-color: color-mix(in oklab, var(--success) 40%, transparent); }
.border-destructive\/30 { border-color: color-mix(in oklab, var(--destructive) 30%, transparent); }
.border-destructive\/40 { border-color: color-mix(in oklab, var(--destructive) 40%, transparent); }
.border-white\/20 { border-color: color-mix(in oklab, oklch(1 0 0) 20%, transparent); }
.border-white\/30 { border-color: color-mix(in oklab, oklch(1 0 0) 30%, transparent); }
.border-white\/60 { border-color: color-mix(in oklab, oklch(1 0 0) 60%, transparent); }
.rounded { border-radius: calc(var(--radius) - 4px); }
.rounded-lg { border-radius: calc(var(--radius) - 2px); }
.rounded-xl { border-radius: var(--radius); }
.rounded-2xl { border-radius: calc(var(--radius) + 4px); }
.rounded-3xl { border-radius: calc(var(--radius) + 8px); }
.rounded-full { border-radius: 9999px; }
.size-4 { width: 16px; height: 16px; }
.size-5 { width: 20px; height: 20px; }
.size-6 { width: 24px; height: 24px; }
.size-7 { width: 28px; height: 28px; }
.size-8 { width: 32px; height: 32px; }
.size-9 { width: 36px; height: 36px; }
.size-10 { width: 40px; height: 40px; }
.size-11 { width: 44px; height: 44px; }
.size-12 { width: 48px; height: 48px; }
.size-14 { width: 56px; height: 56px; }
.size-20 { width: 80px; height: 80px; }
.size-24 { width: 96px; height: 96px; }
.size-36 { width: 144px; height: 144px; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-hidden { overflow: hidden; }
.sticky { position: sticky; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-1\/2 { top: 50%; }
.left-3 { left: 12px; }
.right-3 { right: 12px; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.bottom-4 { bottom: 1rem; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.opacity-60 { opacity: .6; }
.opacity-70 { opacity: .7; }
.opacity-80 { opacity: .8; }
.opacity-90 { opacity: .9; }
.opacity-95 { opacity: .95; }
.text-muted-foreground\/60 { color: color-mix(in oklab, var(--muted-foreground) 60%, transparent); }
.whitespace-pre-wrap { white-space: pre-wrap; }
.font-mono { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,.07); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,.15); }
.shadow-clinical { box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--primary) 35%, transparent); }
.transition-shadow { transition: box-shadow .2s; }
.transition-colors { transition: background .2s, color .2s; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.hover\:shadow-clinical:hover { box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--primary) 35%, transparent); }
.hover\:bg-secondary:hover { background: var(--secondary); }
.hover\:bg-accent:hover { background: var(--accent); color: var(--accent-foreground); }
.hover\:bg-primary\/5:hover { background: color-mix(in oklab, var(--primary) 5%, transparent); }
.hover\:bg-destructive\/10:hover { background: color-mix(in oklab, var(--destructive) 10%, transparent); }
.no-underline { text-decoration: none; }
.no-underline:hover { text-decoration: none; }
.hover\:underline:hover { text-decoration: underline; }
.hidden { display: none; }
.pointer-events-none { pointer-events: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }
.capitalize { text-transform: capitalize; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.border-collapse { border-collapse: collapse; }
.col-span-2 { grid-column: span 2; }
.bg-fixed { background-attachment: fixed; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.scale-105 { transform: scale(1.05); }
.drop-shadow { filter: drop-shadow(0 1px 2px rgba(0,0,0,.1)); }
.drop-shadow-lg { filter: drop-shadow(0 4px 8px rgba(0,0,0,.15)); }
.drop-shadow-2xl { filter: drop-shadow(0 8px 16px rgba(0,0,0,.2)); }
.border-l-0 { border-left: 0; }

/* Modal / Dialog */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: color-mix(in oklab, oklch(0 0 0) 50%, transparent);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-content {
  background: var(--card); border-radius: var(--radius);
  width: 100%; max-width: 512px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
}
.modal-header { padding: 1.25rem 1.5rem 0; }
.modal-body { padding: 1rem 1.5rem; }
.modal-footer {
  padding: 1rem 1.5rem 1.25rem;
  display: flex; justify-content: flex-end; gap: .5rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:inline { display: inline; }
  .md\:hidden { display: none; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:text-lg { font-size: 18px; }
  .md\:text-2xl { font-size: 24px; }
  .md\:text-3xl { font-size: 30px; }
  .md\:text-4xl { font-size: 36px; }
  .md\:text-5xl { font-size: 48px; }
  .md\:text-7xl { font-size: 72px; }
  .md\:text-8xl { font-size: 96px; }
  .md\:block { display: block; }
}

@media (min-width: 1024px) {
  .lg\:text-sm { font-size: 14px; }
  .lg\:inline { display: inline; }
}

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
}

/* Select styling */
.select-wrapper { position: relative; }
.select-wrapper select {
  appearance: none; padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}

/* ─── shadcn-style additions ──────────────────────────────────────────────── */
.gradient-hero-v2 { background: linear-gradient(135deg, color-mix(in oklab, var(--primary) 85%, transparent) 0%, color-mix(in oklab, var(--primary) 60%, transparent) 50%, color-mix(in oklab, oklch(0.5 0.15 150) 70%, transparent) 100%); }
.table-wrap-v2 { overflow-x: auto; border-radius: var(--radius); border: 2px solid color-mix(in oklab, var(--primary) 20%, transparent); background: var(--card); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.table-header-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%); color: var(--primary-foreground); }
.metric-accent { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%); color: var(--primary-foreground); }
.badge-pill { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.shadow-clinical-inset { box-shadow: inset 0 10px 30px -12px color-mix(in oklab, var(--primary) 35%, transparent); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.hover\:shadow-clinical-inset:hover { box-shadow: inset 0 10px 30px -12px color-mix(in oklab, var(--primary) 35%, transparent); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
