/* ============================================================
   Pre-built Tailwind CSS subset (offline) — University Recruitment Portal
   Brand colors, layout, spacing, typography, color, responsive utilities
   covering classes used in the source HTML. No CDN required.
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; font-family: 'Inter', system-ui, sans-serif; }
body { margin: 0; line-height: inherit; }
hr { height: 0; color: inherit; border-top-width: 1px; }
abbr[title] { text-decoration: underline dotted; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace; font-size: 1em; }
small { font-size: 80%; }
table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, select { text-transform: none; }
button, [type=button], [type=reset], [type=submit] { -webkit-appearance: button; background-color: transparent; background-image: none; }
:-moz-focusring { outline: auto; }
::-moz-focus-inner { border-style: none; padding: 0; }
fieldset { margin: 0; padding: 0; }
legend { padding: 0; }
ol, ul, menu { list-style: none; margin: 0; padding: 0; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { opacity: 1; color: #9ca3af; }
button, [role=button] { cursor: pointer; }
:disabled { cursor: default; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
[hidden] { display: none; }

/* ---------- Layout ---------- */
.container { width: 100%; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.table { display: table; }
.contents { display: contents; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.content-center { align-content: center; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-full { grid-column: 1 / -1; }

/* ---------- Position ---------- */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-1\/2 { top: 50%; }
.top-20 { top: 5rem; }
.-top-2 { top: -0.5rem; }
.right-0 { right: 0; }
.right-1 { right: 0.25rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-3 { bottom: 0.75rem; }
.left-0 { left: 0; }
.left-2 { left: 0.5rem; }
.left-3 { left: 0.75rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ---------- Sizing ---------- */
.w-0 { width: 0; } .w-1 { width: 0.25rem; } .w-2 { width: 0.5rem; } .w-2\.5 { width: 0.625rem; } .w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; } .w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-7 { width: 1.75rem; }
.w-8 { width: 2rem; } .w-9 { width: 2.25rem; } .w-10 { width: 2.5rem; } .w-11 { width: 2.75rem; } .w-12 { width: 3rem; }
.w-14 { width: 3.5rem; } .w-16 { width: 4rem; } .w-20 { width: 5rem; } .w-24 { width: 6rem; } .w-28 { width: 7rem; }
.w-32 { width: 8rem; } .w-40 { width: 10rem; } .w-48 { width: 12rem; } .w-56 { width: 14rem; } .w-60 { width: 15rem; }
.w-64 { width: 16rem; } .w-72 { width: 18rem; } .w-80 { width: 20rem; } .w-96 { width: 24rem; }
.w-px { width: 1px; } .w-auto { width: auto; } .w-full { width: 100%; } .w-screen { width: 100vw; }
.w-1\/2 { width: 50%; } .w-1\/3 { width: 33.333333%; } .w-2\/3 { width: 66.666667%; } .w-1\/4 { width: 25%; }

.min-w-0 { min-width: 0; } .min-w-full { min-width: 100%; }
.max-w-xs { max-width: 20rem; } .max-w-sm { max-width: 24rem; } .max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; } .max-w-xl { max-width: 36rem; } .max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; } .max-w-4xl { max-width: 56rem; } .max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; } .max-w-7xl { max-width: 80rem; } .max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }

.h-0 { height: 0; } .h-1 { height: 0.25rem; } .h-1\.5 { height: 0.375rem; } .h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; } .h-3 { height: 0.75rem; } .h-3\.5 { height: 0.875rem; } .h-4 { height: 1rem; }
.h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-7 { height: 1.75rem; } .h-8 { height: 2rem; }
.h-9 { height: 2.25rem; } .h-10 { height: 2.5rem; } .h-11 { height: 2.75rem; } .h-12 { height: 3rem; }
.h-14 { height: 3.5rem; } .h-16 { height: 4rem; } .h-20 { height: 5rem; } .h-24 { height: 6rem; } .h-28 { height: 7rem; }
.h-32 { height: 8rem; } .h-40 { height: 10rem; } .h-48 { height: 12rem; } .h-56 { height: 14rem; } .h-64 { height: 16rem; }
.h-px { height: 1px; } .h-auto { height: auto; } .h-full { height: 100%; } .h-screen { height: 100vh; }

.min-h-screen { min-height: 100vh; }
.max-h-64 { max-height: 16rem; } .max-h-80 { max-height: 20rem; } .max-h-96 { max-height: 24rem; }
.max-h-full { max-height: 100%; } .max-h-screen { max-height: 100vh; }

/* ---------- Spacing (padding) ---------- */
.p-0 { padding: 0; } .p-0\.5 { padding: 0.125rem; } .p-1 { padding: 0.25rem; } .p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; } .p-2\.5 { padding: 0.625rem; } .p-3 { padding: 0.75rem; } .p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; } .p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; } .p-10 { padding: 2.5rem; } .p-12 { padding: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; } .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; } .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; } .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; } .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-0 { padding-top: 0; padding-bottom: 0; } .py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; } .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; } .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; } .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-1 { padding-top: 0.25rem; } .pt-2 { padding-top: 0.5rem; } .pt-3 { padding-top: 0.75rem; } .pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; } .pt-6 { padding-top: 1.5rem; } .pt-8 { padding-top: 2rem; }
.pr-2 { padding-right: 0.5rem; } .pr-3 { padding-right: 0.75rem; } .pr-4 { padding-right: 1rem; }
.pb-1 { padding-bottom: 0.25rem; } .pb-2 { padding-bottom: 0.5rem; } .pb-3 { padding-bottom: 0.75rem; } .pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; } .pb-6 { padding-bottom: 1.5rem; } .pb-8 { padding-bottom: 2rem; }
.pl-2 { padding-left: 0.5rem; } .pl-3 { padding-left: 0.75rem; } .pl-4 { padding-left: 1rem; } .pl-5 { padding-left: 1.25rem; }
.pl-8 { padding-left: 2rem; } .pl-9 { padding-left: 2.25rem; } .pl-10 { padding-left: 2.5rem; }

/* ---------- Spacing (margin) ---------- */
.m-0 { margin: 0; } .m-1 { margin: 0.25rem; } .m-2 { margin: 0.5rem; } .m-3 { margin: 0.75rem; } .m-4 { margin: 1rem; }
.m-auto { margin: auto; }
.mx-0 { margin-left: 0; margin-right: 0; } .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } .mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; } .mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; } .mx-auto { margin-left: auto; margin-right: auto; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; } .my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; } .my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; } .my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-0 { margin-top: 0; } .mt-0\.5 { margin-top: 0.125rem; } .mt-1 { margin-top: 0.25rem; } .mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }
.mr-1 { margin-right: 0.25rem; } .mr-2 { margin-right: 0.5rem; } .mr-3 { margin-right: 0.75rem; } .mr-4 { margin-right: 1rem; }
.mr-auto { margin-right: auto; }
.mb-0 { margin-bottom: 0; } .mb-0\.5 { margin-bottom: 0.125rem; } .mb-1 { margin-bottom: 0.25rem; } .mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-px { margin-bottom: 1px; }
.ml-1 { margin-left: 0.25rem; } .ml-2 { margin-left: 0.5rem; } .ml-3 { margin-left: 0.75rem; } .ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* ---------- Gap ---------- */
.gap-0 { gap: 0; } .gap-0\.5 { gap: 0.125rem; } .gap-1 { gap: 0.25rem; } .gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; } .gap-x-2 { column-gap: 0.5rem; } .gap-x-4 { column-gap: 1rem; } .gap-x-6 { column-gap: 1.5rem; }
.gap-y-1 { row-gap: 0.25rem; } .gap-y-2 { row-gap: 0.5rem; } .gap-y-4 { row-gap: 1rem; }

.space-x-1 > :not(:last-child) { margin-right: 0.25rem; }
.space-x-2 > :not(:last-child) { margin-right: 0.5rem; }
.space-y-1 > :not(:last-child) { margin-bottom: 0.25rem; }
.space-y-2 > :not(:last-child) { margin-bottom: 0.5rem; }
.space-y-3 > :not(:last-child) { margin-bottom: 0.75rem; }
.space-y-4 > :not(:last-child) { margin-bottom: 1rem; }
.space-y-6 > :not(:last-child) { margin-bottom: 1.5rem; }

.divide-y > :not(:first-child) { border-top-width: 1px; }
.divide-x > :not(:first-child) { border-left-width: 1px; }
.divide-slate-100 > :not(:first-child) { border-color: #f1f5f9; }
.divide-slate-200 > :not(:first-child) { border-color: #e2e8f0; }

/* ---------- Typography ---------- */
.text-\[10px\] { font-size: 10px; line-height: 14px; }
.text-\[11px\] { font-size: 11px; line-height: 15px; }
.text-\[12px\] { font-size: 12px; line-height: 16px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace; }
.font-sans { font-family: 'Inter', system-ui, sans-serif; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }
.truncate { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.list-disc { list-style-type: disc; padding-left: 1.25rem; }
.list-decimal { list-style-type: decimal; padding-left: 1.25rem; }
.underline { text-decoration: underline; }

/* ---------- Brand colors ---------- */
:root {
  --brand-navy: #1B3A6B;
  --brand-navy-2: #16315B;
  --brand-navy-3: #0F2548;
  --brand-gold: #C8A84B;
  --brand-gold-2: #B89638;
  --brand-light: #F4F6FA;
  --brand-bg: #F8F9FC;
}
.text-brand-navy { color: #1B3A6B; }
.text-brand-navy-2 { color: #16315B; }
.text-brand-navy-3 { color: #0F2548; }
.text-brand-gold { color: #C8A84B; }
.text-brand-gold-2 { color: #B89638; }
.bg-brand-navy { background-color: #1B3A6B; }
.bg-brand-navy-2 { background-color: #16315B; }
.bg-brand-navy-3 { background-color: #0F2548; }
.bg-brand-gold { background-color: #C8A84B; }
.bg-brand-gold-2 { background-color: #B89638; }
.bg-brand-light { background-color: #F4F6FA; }
.bg-brand-bg { background-color: #F8F9FC; }
.bg-brand-gold\/20 { background-color: rgba(200,168,75,0.2); }
.bg-brand-navy\/10 { background-color: rgba(27,58,107,0.1); }
.border-brand-navy { border-color: #1B3A6B; }
.border-brand-navy\/10 { border-color: rgba(27,58,107,0.1); }
.border-brand-gold { border-color: #C8A84B; }
.border-l-brand-navy { border-left-color: #1B3A6B; }

/* ---------- Color palette ---------- */
.text-white { color: #fff; } .bg-white { background-color: #fff; } .bg-white\/10 { background-color: rgba(255,255,255,0.1); } .bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.text-black { color: #000; } .bg-black { background-color: #000; }
.text-transparent { color: transparent; } .bg-transparent { background-color: transparent; }
.border-transparent { border-color: transparent; } .border-l-transparent { border-left-color: transparent; }

/* slate */
.text-slate-50 { color: #f8fafc; } .text-slate-100 { color: #f1f5f9; } .text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; } .text-slate-400 { color: #94a3b8; } .text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; } .text-slate-700 { color: #334155; } .text-slate-800 { color: #1e293b; } .text-slate-900 { color: #0f172a; }
.bg-slate-50 { background-color: #f8fafc; } .bg-slate-100 { background-color: #f1f5f9; } .bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-300 { background-color: #cbd5e1; } .bg-slate-700 { background-color: #334155; } .bg-slate-800 { background-color: #1e293b; } .bg-slate-900 { background-color: #0f172a; }
.border-slate-100 { border-color: #f1f5f9; } .border-slate-200 { border-color: #e2e8f0; } .border-slate-300 { border-color: #cbd5e1; } .border-slate-400 { border-color: #94a3b8; } .border-slate-800 { border-color: #1e293b; }

/* red */
.text-red-500 { color: #ef4444; } .text-red-600 { color: #dc2626; } .text-red-700 { color: #b91c1c; } .text-red-800 { color: #991b1b; } .text-red-900 { color: #7f1d1d; }
.bg-red-50 { background-color: #fef2f2; } .bg-red-100 { background-color: #fee2e2; } .bg-red-200 { background-color: #fecaca; } .bg-red-500 { background-color: #ef4444; } .bg-red-600 { background-color: #dc2626; }
.border-red-100 { border-color: #fee2e2; } .border-red-200 { border-color: #fecaca; }
/* rose */
.text-rose-700 { color: #be123c; } .bg-rose-50 { background-color: #fff1f2; } .bg-rose-600 { background-color: #e11d48; } .border-rose-200 { border-color: #fecdd3; }
/* orange */
.text-orange-700 { color: #c2410c; } .text-orange-800 { color: #9a3412; }
.bg-orange-100 { background-color: #ffedd5; } .bg-orange-500 { background-color: #f97316; } .bg-orange-600 { background-color: #ea580c; }
/* amber */
.text-amber-200 { color: #fde68a; } .text-amber-300 { color: #fcd34d; } .text-amber-500 { color: #f59e0b; } .text-amber-600 { color: #d97706; } .text-amber-700 { color: #b45309; } .text-amber-800 { color: #92400e; } .text-amber-900 { color: #78350f; }
.bg-amber-50 { background-color: #fffbeb; } .bg-amber-100 { background-color: #fef3c7; } .bg-amber-200 { background-color: #fde68a; } .bg-amber-400 { background-color: #fbbf24; } .bg-amber-500 { background-color: #f59e0b; } .bg-amber-600 { background-color: #d97706; }
.border-amber-100 { border-color: #fef3c7; } .border-amber-200 { border-color: #fde68a; } .border-amber-300 { border-color: #fcd34d; }
/* yellow */
.bg-yellow-500 { background-color: #eab308; }
/* green */
.text-green-600 { color: #16a34a; } .text-green-700 { color: #15803d; } .text-green-800 { color: #166534; } .text-green-900 { color: #14532d; }
.bg-green-50 { background-color: #f0fdf4; } .bg-green-100 { background-color: #dcfce7; } .bg-green-200 { background-color: #bbf7d0; } .bg-green-400 { background-color: #4ade80; }
/* emerald */
.text-emerald-600 { color: #059669; } .text-emerald-700 { color: #047857; } .text-emerald-800 { color: #065f46; } .text-emerald-900 { color: #064e3b; }
.bg-emerald-50 { background-color: #ecfdf5; } .bg-emerald-100 { background-color: #d1fae5; } .bg-emerald-500 { background-color: #10b981; } .bg-emerald-600 { background-color: #059669; } .bg-emerald-700 { background-color: #047857; }
.border-emerald-200 { border-color: #a7f3d0; }
/* teal */
.text-teal-700 { color: #0f766e; } .bg-teal-50 { background-color: #f0fdfa; } .bg-teal-100 { background-color: #ccfbf1; } .bg-teal-600 { background-color: #0d9488; } .border-teal-200 { border-color: #99f6e4; }
/* cyan */
.text-cyan-700 { color: #0e7490; }
/* blue */
.text-blue-600 { color: #2563eb; } .text-blue-700 { color: #1d4ed8; } .text-blue-800 { color: #1e40af; } .text-blue-900 { color: #1e3a8a; }
.bg-blue-50 { background-color: #eff6ff; } .bg-blue-100 { background-color: #dbeafe; } .bg-blue-200 { background-color: #bfdbfe; } .bg-blue-500 { background-color: #3b82f6; } .bg-blue-600 { background-color: #2563eb; }
.border-blue-100 { border-color: #dbeafe; } .border-blue-200 { border-color: #bfdbfe; }
/* indigo */
.text-indigo-700 { color: #4338ca; } .bg-indigo-50 { background-color: #eef2ff; } .bg-indigo-100 { background-color: #e0e7ff; } .bg-indigo-600 { background-color: #4f46e5; } .border-indigo-200 { border-color: #c7d2fe; }
/* purple */
.text-purple-600 { color: #9333ea; } .text-purple-700 { color: #7e22ce; } .text-purple-800 { color: #6b21a8; } .text-purple-900 { color: #581c87; }
.bg-purple-50 { background-color: #faf5ff; } .bg-purple-100 { background-color: #f3e8ff; } .bg-purple-500 { background-color: #a855f7; } .bg-purple-600 { background-color: #9333ea; }
.border-purple-100 { border-color: #f3e8ff; } .border-purple-200 { border-color: #e9d5ff; }
/* pink */
.text-pink-700 { color: #be185d; } .text-pink-900 { color: #831843; }
.bg-pink-100 { background-color: #fce7f3; } .bg-pink-200 { background-color: #fbcfe8; }

/* ---------- Borders ---------- */
.border { border-width: 1px; } .border-0 { border-width: 0; } .border-2 { border-width: 2px; } .border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; } .border-r { border-right-width: 1px; } .border-b { border-bottom-width: 1px; } .border-l { border-left-width: 1px; }
.border-b-0 { border-bottom-width: 0; } .border-b-2 { border-bottom-width: 2px; }
.border-l-2 { border-left-width: 2px; } .border-l-4 { border-left-width: 4px; }
.border-t-2 { border-top-width: 2px; }
.border-dashed { border-style: dashed; } .border-dotted { border-style: dotted; } .border-solid { border-style: solid; } .border-white\/10 { border-color: rgba(255,255,255,0.1); }

.rounded { border-radius: 0.25rem; } .rounded-sm { border-radius: 0.125rem; } .rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; } .rounded-xl { border-radius: 0.75rem; } .rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; } .rounded-full { border-radius: 9999px; } .rounded-none { border-radius: 0; }
.rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; }
.rounded-b-md { border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }

/* ---------- Effects ---------- */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-none { box-shadow: none; }

.opacity-0 { opacity: 0; } .opacity-25 { opacity: 0.25; } .opacity-50 { opacity: 0.5; } .opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; } .opacity-90 { opacity: 0.9; } .opacity-100 { opacity: 1; }
.backdrop-blur { backdrop-filter: blur(8px); }

/* ---------- Overflow / interactivity ---------- */
.overflow-auto { overflow: auto; } .overflow-hidden { overflow: hidden; } .overflow-visible { overflow: visible; }
.overflow-x-auto { overflow-x: auto; } .overflow-y-auto { overflow-y: auto; } .overflow-x-hidden { overflow-x: hidden; }
.cursor-pointer { cursor: pointer; } .cursor-default { cursor: default; } .cursor-not-allowed { cursor: not-allowed; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ---------- Gradients ---------- */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent))); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent))); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent))); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent))); }

/* gradient stops with `from-` `via-` `to-` */
.from-brand-navy { --tw-gradient-from: #1B3A6B; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(27,58,107,0)); }
.from-brand-gold\/20 { --tw-gradient-from: rgba(200,168,75,0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-amber-400 { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251,191,36,0)); }
.from-amber-600 { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-blue-50 { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-emerald-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-emerald-700 { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-purple-700 { --tw-gradient-from: #7e22ce; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-brand-navy-2 { --tw-gradient-stops: var(--tw-gradient-from), #16315B, var(--tw-gradient-to, transparent); }
.via-amber-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, transparent); }
.to-brand-navy-2 { --tw-gradient-to: #16315B; }
.to-brand-navy-3 { --tw-gradient-to: #0F2548; }
.to-brand-gold { --tw-gradient-to: #C8A84B; }
.to-amber-50 { --tw-gradient-to: #fffbeb; }
.to-amber-300 { --tw-gradient-to: #fcd34d; }
.to-amber-500 { --tw-gradient-to: #f59e0b; }
.to-emerald-600 { --tw-gradient-to: #059669; }
.to-indigo-50 { --tw-gradient-to: #eef2ff; }
.to-purple-600 { --tw-gradient-to: #9333ea; }

/* ---------- Transitions ---------- */
.transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition-property: transform; transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; } .duration-200 { transition-duration: 200ms; } .duration-300 { transition-duration: 300ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-amber-50:hover { background-color: #fffbeb; }
.hover\:bg-amber-100:hover { background-color: #fef3c7; }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-red-50:hover { background-color: #fef2f2; }
.hover\:bg-red-100:hover { background-color: #fee2e2; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-slate-200:hover { background-color: #e2e8f0; }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:border-brand-navy:hover { border-color: #1B3A6B; }
.hover\:text-amber-100:hover { color: #fef3c7; }
.hover\:text-brand-navy:hover { color: #1B3A6B; }
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:text-red-700:hover { color: #b91c1c; }
.hover\:text-white:hover { color: #fff; }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:bg-white:focus { background-color: #fff; }
.focus\:border-brand-navy:focus { border-color: #1B3A6B; }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }

/* ---------- Tables ---------- */
.table-auto { table-layout: auto; } .table-fixed { table-layout: fixed; }
.border-collapse { border-collapse: collapse; }

/* ---------- Print ---------- */
@media print {
  .print\:border-0 { border-width: 0 !important; }
  .print\:rounded-none { border-radius: 0 !important; }
  .print\:shadow-none { box-shadow: none !important; }
}

/* ===================================================
   Responsive: sm (640), md (768), lg (1024), xl (1280)
   =================================================== */
@media (min-width: 640px) {
  .sm\:block { display: block; } .sm\:flex { display: flex; } .sm\:hidden { display: none; }
  .sm\:grid { display: grid; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .md\:block { display: block; } .md\:inline-block { display: inline-block; }
  .md\:flex { display: flex; } .md\:inline-flex { display: inline-flex; }
  .md\:grid { display: grid; } .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .md\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .md\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-7 { grid-column: span 7 / span 7; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:col-span-9 { grid-column: span 9 / span 9; }
  .md\:flex-row { flex-direction: row; }
  .md\:divide-x > :not(:first-child) { border-left-width: 1px; }
  .md\:divide-y-0 > :not(:first-child) { border-top-width: 0; }
  .md\:p-6 { padding: 1.5rem; } .md\:p-8 { padding: 2rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .lg\:block { display: block; } .lg\:flex { display: flex; } .lg\:grid { display: grid; }
  .lg\:hidden { display: none; } .lg\:relative { position: relative; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
}
@media (min-width: 1280px) {
  .xl\:block { display: block; } .xl\:flex { display: flex; } .xl\:hidden { display: none; }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
