:root {
	--color-base-100: #ffffff;
	--color-base-200: #f3f6fb;
	--color-base-300: #d7dfeb;
	--color-base-content: #111827;
	--color-primary: #c1121f;
	--color-primary-content: #fff7f8;
	--color-secondary: #40526b;
	--color-neutral: #0f172a;
	--color-neutral-content: #f8fafc;
	--color-navy: #0f1f3d;
	--color-blue-grey: #1f334f;
	--color-gold: #c9a45c;
	--color-light: var(--color-base-200);
	--color-text: var(--color-base-content);
	--color-border: var(--color-base-300);
	--color-muted: #64748b;
	--color-success: #28543d;
	--color-success-bg: #e9f4ee;
	--color-warning: #7c4a03;
	--color-warning-bg: #fef3dd;
	--color-error: #8b1020;
	--color-error-bg: #f9e5e8;
}

* {
	box-sizing: border-box;
}

html {
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

body {
	margin: 0;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
svg {
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
	max-width: 100%;
}

.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.left-0 { left: 0; }
.top-0 { top: 0; }
.top-24 { top: 6rem; }
.z-50 { z-index: 50; }
.isolate { isolation: isolate; }
.min-h-screen { min-height: 100vh; }
.min-h-16 { min-height: 4rem; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.min-w-full { min-width: 100%; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-auto { width: auto; }
.h-5 { height: 1.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-full { height: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-7xl { max-width: 80rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.rounded-lg { border-radius: 0; }
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-slate-200 { border-color: var(--color-border); }
.border-base-300 { border-color: var(--color-base-300); }
.border-neutral-content\/10 { border-color: rgb(248 250 252 / 0.1); }
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: var(--color-light); }
.bg-\[\#0f1f3d\] { background-color: var(--color-navy); }
.bg-base-100 { background-color: var(--color-base-100); }
.bg-base-100\/95 { background-color: var(--color-base-100); }
.bg-transparent { background-color: transparent; }
.bg-neutral { background-color: var(--color-neutral); }
.bg-neutral\/90 { background-color: rgb(15 23 42 / 0.9); }
.text-white { color: #ffffff; }
.text-gray-900 { color: var(--color-text); }
.text-base-content { color: var(--color-base-content); }
.text-neutral-content { color: var(--color-neutral-content); }
.text-neutral-content\/50 { color: rgb(248 250 252 / 0.5); }
.text-neutral-content\/60 { color: rgb(248 250 252 / 0.6); }
.text-neutral-content\/70 { color: rgb(248 250 252 / 0.7); }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-green-700 { color: #15803d; }
.text-amber-700 { color: #b45309; }
.text-red-700 { color: #b91c1c; }
.text-\[\#0f1f3d\] { color: var(--color-navy); }
.text-\[\#c9a45c\] { color: var(--color-gold); }
.shadow-sm { box-shadow: none; }
.shadow-xl { box-shadow: none; }
.opacity-15 { opacity: 0.15; }
.backdrop-blur { backdrop-filter: none; }
.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-2xl { font-size: 1.5rem; line-height: 2rem; }
.leading-relaxed { line-height: 1.625; }
.text-left { text-align: left; }
.align-top { vertical-align: top; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { overflow-wrap: anywhere; }
.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 0;
	cursor: pointer;
	display: inline-flex;
	font-weight: 600;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 1rem;
	text-align: center;
	transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn-sm {
	min-height: 2rem;
	padding: 0.25rem 0.75rem;
}

.btn-square {
	aspect-ratio: 1 / 1;
	padding: 0;
	width: 2rem;
}

.btn-icon {
	aspect-ratio: 1 / 1;
	padding: 0.25rem;
	width: 2rem;
}

.btn.btn-icon {
	min-height: 2.5rem;
	padding: 0.5rem;
	width: 2.5rem;
}

.btn.btn-sm.btn-icon {
	min-height: 2rem;
	padding: 0.375rem;
	width: 2rem;
}

.icon {
	height: 1.125rem;
	width: 1.125rem;
}

.btn-sm .icon {
	height: 1rem;
	width: 1rem;
}

.btn-ghost {
	background: transparent;
	border-color: transparent;
}

.btn-ghost:hover {
	background: rgb(17 24 39 / 0.06);
}

.btn-outline {
	background: transparent;
	border-color: var(--color-base-300);
	color: var(--color-base-content);
}

.btn-outline:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.hover\:bg-\[\#1f334f\]:hover {
	background-color: var(--color-blue-grey);
}

.input {
	background-color: #ffffff;
	border-radius: 0;
	display: block;
	min-height: 2.5rem;
	padding: 0.5rem 0.75rem;
}

.input-bordered {
	border: 1px solid #cbd5e1;
}

.input:focus {
	border-color: var(--color-gold);
	outline: 2px solid rgb(201 164 92 / 0.25);
	outline-offset: 1px;
}

.form-control {
	display: block;
}

.label-text {
	color: #334155;
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
}

.alert {
	border-radius: 0;
	padding: 0.75rem 1rem;
}

.alert-success {
	background-color: var(--color-success-bg);
	color: var(--color-success);
}

.alert-warning {
	background-color: var(--color-warning-bg);
	color: var(--color-warning);
}

.alert-error {
	background-color: var(--color-error-bg);
	color: var(--color-error);
}

.badge {
	align-items: center;
	border-radius: 0;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.25rem 0.5rem;
}

.badge-success {
	background-color: var(--color-success-bg);
	color: var(--color-success);
}

.badge-warning {
	background-color: var(--color-warning-bg);
	color: var(--color-warning);
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-title {
	color: #64748b;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	padding: 0.5rem 0.75rem 0.25rem;
	text-transform: uppercase;
}

.menu a {
	border-radius: 0;
	display: block;
	padding: 0.5rem 0.75rem;
}

.menu a:hover {
	background-color: #f1f5f9;
	color: var(--color-navy);
}

.page-stack {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.page-header {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.page-header-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}

.page-header-actions .btn {
	width: 100%;
}

.page-header-actions .btn.btn-icon {
	width: 2.5rem;
}

.action-row {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.action-row form {
	width: auto;
}

.form-stack {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.field-stack {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.section-title {
	color: var(--color-navy);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.choice-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.choice-item {
	align-items: flex-start;
	border: 1px solid var(--color-border);
	display: flex;
	gap: 0.75rem;
	padding: 1rem;
}

.choice-item input {
	margin-top: 0.25rem;
}

.table-scroll {
	margin-left: -1rem;
	margin-right: -1rem;
	overflow-x: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	-webkit-overflow-scrolling: touch;
}

.table-scroll table {
	border-collapse: collapse;
	min-width: 42rem;
}

.table-scroll-lg table {
	min-width: 64rem;
}

.table-scroll th,
.table-scroll td {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	vertical-align: top;
}

.responsive-meta {
	display: grid;
	gap: 0.75rem;
}

.responsive-meta p {
	margin: 0;
	overflow-wrap: anywhere;
}

details > summary {
	cursor: pointer;
	list-style: none;
}

details > summary::-webkit-details-marker {
	display: none;
}

.hidden {
	display: none;
}

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

	.sm\:inline-flex {
		display: inline-flex;
	}

	.sm\:flex-row {
		flex-direction: row;
	}

	.sm\:items-center {
		align-items: center;
	}

	.sm\:items-start {
		align-items: flex-start;
	}

	.sm\:justify-between {
		justify-content: space-between;
	}

	.sm\:w-auto {
		width: auto;
	}

	.sm\:p-8 {
		padding: 2rem;
	}

	.sm\:py-8 {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.sm\:px-6 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.page-header {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.page-header-actions {
		flex-direction: row;
		width: auto;
	}

	.page-header-actions .btn {
		width: auto;
	}

	.action-row {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.action-row .btn,
	.action-row form,
	.action-row button {
		width: auto;
	}

	.table-scroll {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 768px) {
	.md\:flex-row { flex-direction: row; }
	.md\:items-center { align-items: center; }
	.md\:items-end { align-items: flex-end; }
	.md\:justify-between { justify-content: space-between; }
	.md\:text-right { text-align: right; }
	.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.md\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 1024px) {
	.lg\:block { display: block; }
	.lg\:hidden { display: none; }
	.lg\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.action-row .btn.btn-icon,
.page-header-actions .btn.btn-icon {
	width: 2.5rem;
}

.action-row .btn.btn-sm.btn-icon {
	width: 2rem;
}
