:root {
	--navy: #051c42;
	--teal: #00a98f;
	--ink: #14224b;
	--danger: #dc2626
}

* {
	box-sizing: border-box
}

body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
	color: var(--ink);
	background: #fff
}

[hidden] {
	display: none !important
}

.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 50px
}

.modern-form {
	max-width: 650px;
	width: 100%;
	margin: 0 auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	border-radius: 10px;
	font-weight: 800;
	padding: .9rem 1.2rem;
	border: 0;
	cursor: pointer;
	transition: .2s
}

.btn-primary {
	background: linear-gradient(135deg, #02b99e, #00977f);
	color: white;
	box-shadow: 0 14px 30px rgba(0, 169, 143, .22)
}

.btn-outline {
	border: 1px solid #c8d2e5;
	color: var(--navy);
	background: white
}

.btn-danger {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #fff;
	box-shadow: 0 14px 30px rgba(220, 38, 38, .2)
}

.btn-sm {
	padding: .72rem 1rem;
	font-size: .88rem
}

.eyebrow {
	color: var(--teal);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em
}

.h1 {
	font-size: clamp(2.3rem, 5vw, 4.7rem);
	line-height: 1.05;
	color: var(--navy);
	font-weight: 950;
	letter-spacing: 0
}

.h2 {
	font-size: clamp(2rem, 3.6vw, 3.4rem);
	line-height: 1.08;
	color: var(--navy);
	font-weight: 950
}

.card {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: white;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .08)
}

.soft {
	background: linear-gradient(135deg, #effdfa, #f8fbff)
}

.toast-region {
	position: fixed;
	top: 22px;
	right: 22px;
	z-index: 80;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: min(100%, 380px);
	pointer-events: none
}

.toast {
	pointer-events: auto;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .98);
	border: 1px solid #e2e8f0;
	box-shadow: 0 20px 45px rgba(15, 23, 42, .14);
	backdrop-filter: blur(14px);
	opacity: 0;
	transform: translateY(-10px) scale(.98);
	transition: opacity .25s ease, transform .25s ease
}

.toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1)
}

.toast.is-hiding {
	opacity: 0;
	transform: translateY(-8px) scale(.98)
}

.toast-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.toast-content {
	min-width: 0;
	flex: 1
}

.toast-title {
	display: block;
	font-size: .82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px
}

.toast-message {
	display: block;
	font-size: .92rem;
	line-height: 1.45;
	font-weight: 700;
	color: #334155
}

.toast-close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #94a3b8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: background .2s ease, color .2s ease
}

.toast-close:hover {
	background: #f1f5f9;
	color: #334155
}

.toast-success {
	border-color: #b7f2df
}

.toast-success .toast-icon {
	background: #dcfce7;
	color: #15803d
}

.toast-success .toast-title {
	color: #15803d
}

.toast-error {
	border-color: #fecaca
}

.toast-error .toast-icon {
	background: #fee2e2;
	color: #b91c1c
}

.toast-error .toast-title {
	color: #b91c1c
}

.toast-warning {
	border-color: #fde68a
}

.toast-warning .toast-icon {
	background: #fef3c7;
	color: #b45309
}

.toast-warning .toast-title {
	color: #b45309
}

.brand-mark {
	width: 58px;
	height: 58px;
	border-radius: 999px;
	border: 6px solid #dce5ef;
	border-left-color: var(--teal);
	border-top-color: var(--teal);
	display: block
}

.auth-page {
	min-height: 100dvh;
	height: 100dvh;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	background: #f8fbff;
	overflow: hidden
}

.auth-visual {
	position: relative;
	min-height: 100dvh;
	padding: 48px;
	color: white;
	background: linear-gradient(rgba(4, 24, 66, .9), rgba(4, 24, 66, .92)), url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1400&q=80") center/cover
}

.auth-visual-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.auth-panel {
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background-image: radial-gradient(#d8e0ee 1px, transparent 1px);
	background-size: 18px 18px
}

.auth-card {
	width: 100%;
	border-radius: 16px;
	background: white;
	padding: 20px 32px;
	box-shadow: 0 12px 36px rgba(15, 23, 42, .06);
	border: 1px solid #eef2f7
}

.auth-form-intro {
	text-align: center;
	margin-bottom: 1.5rem
}

.auth-form-badge {
	width: 72px;
	height: 72px;
	margin: 0 auto 1rem;
	border-radius: 24px;
	background: linear-gradient(135deg, #e6fffa, #eff6ff);
	border: 1px solid #bfece2;
	color: #00a98f;
	display: flex;
	align-items: center;
	justify-content: center
}

.auth-form-tips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 1.3rem
}

.auth-form-tips span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: .55rem .8rem;
	border-radius: 999px;
	background: #f8fbff;
	border: 1px solid #e2e8f0;
	font-size: .83rem;
	font-weight: 800;
	color: #445174
}

.auth-form .label {
	margin-bottom: .55rem
}

.auth-submit {
	min-height: 54px
}

.auth-flash {
	margin-bottom: 16px;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: .85rem;
	font-weight: 700
}

.admin-shell {
	display: grid;
	grid-template-columns: 300px 1fr;
	min-height: 100vh;
	background: #f7f9fc;
	background-image: radial-gradient(#dbe4ef .8px, transparent .8px);
	background-size: 18px 18px;
	transition: grid-template-columns .25s ease
}

.sidebar-collapsed .admin-shell {
	grid-template-columns: 104px 1fr
}

.admin-sidebar {
	background: white;
	color: var(--ink);
	padding: 28px 18px;
	position: sticky;
	top: 0;
	height: 100vh;
	border-right: 1px solid #e5eaf2;
	display: flex;
	flex-direction: column;
	width: 300px;
	overflow: hidden;
	transition: width .25s ease, transform .25s ease, padding .25s ease
}

.admin-sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(7, 31, 96, .44);
	backdrop-filter: blur(3px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
	z-index: 25
}

.sidebar-open .admin-sidebar-overlay {
	opacity: 1;
	pointer-events: auto
}

.admin-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 58px
}

.admin-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	flex-shrink: 0
}

.admin-sidebar-nav {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 8px 4px 16px 0;
	scrollbar-width: thin;
	scrollbar-color: #94a3b8 transparent
}

.admin-sidebar-nav::-webkit-scrollbar {
	width: 8px
}

.admin-sidebar-nav::-webkit-scrollbar-track {
	background: transparent
}

.admin-sidebar-nav::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px
}

.admin-sidebar-nav::-webkit-scrollbar-thumb:hover {
	background: #94a3b8
}

.admin-sidebar-footer {
	margin-top: 12px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
	flex-shrink: 0;
	background: white
}

.admin-logo-full {
	height: 90px;
	width: auto;
	display: block
}

.admin-logo-icon {
	height: 70px;
	width: 70px;
	object-fit: contain;
	display: none
}

.sidebar-collapsed .admin-sidebar {
	width: 104px;
	padding-left: 12px;
	padding-right: 12px
}

.sidebar-collapsed .admin-brand {
	justify-content: center
}

.sidebar-collapsed .admin-sidebar-header {
	justify-content: center
}

.sidebar-collapsed .admin-logo-full,
.sidebar-collapsed .admin-nav-label,
.sidebar-collapsed .admin-collapse-label {
	display: none
}

.sidebar-collapsed .admin-logo-icon {
	display: block
}

.admin-sidebar a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 8px;
	color: #445174;
	margin-bottom: 8px;
	font-weight: 750
}

.sidebar-collapsed .admin-sidebar a {
	justify-content: center;
	padding-left: 12px;
	padding-right: 12px
}

.sidebar-collapsed .admin-sidebar [data-toggle-sidebar] {
	justify-content: center;
	padding-left: 12px;
	padding-right: 12px
}

.admin-sidebar a svg {
	width: 21px;
	height: 21px;
	flex-shrink: 0
}

.admin-sidebar a:hover,
.admin-sidebar .active {
	background: #eaf9f6;
	color: #008f7d
}

.admin-sidebar-close {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #071f60;
	align-items: center;
	justify-content: center;
	cursor: pointer
}

.admin-main {
	min-width: 0
}

.admin-topbar {
	height: 82px;
	background: white;
	border-bottom: 1px solid #e5eaf2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	position: sticky;
	top: 0;
	z-index: 10
}

.admin-content {
	padding: 34px;
	max-width: 1280px
}

.admin-page-title {
	font-size: 2rem;
	line-height: 1.1;
	color: var(--navy);
	font-weight: 950
}

.metric-card {
	min-height: 160px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.metric-icon {
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: #dff6f2;
	color: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center
}

.list-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid #e5eaf2
}

.list-row:last-child {
	border-bottom: 0
}

.avatar-dot {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: #e3f8f4;
	color: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900
}

.table {
	width: 100%;
	border-collapse: collapse
}

.table-card {
	position: relative
}

.table th {
	font-size: .76rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #667085;
	text-align: left;
	background: #f8fafc
}

.table th,
.table td {
	padding: 13px 14px;
	border-bottom: 1px solid #e5e7eb;
	vertical-align: top
}

.table-state-row td {
	padding: 0;
	border-bottom: 0
}

.table-state {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 18px;
	padding: 34px 22px;
	text-align: left;
	background: linear-gradient(180deg, #fff, #f8fbff)
}

.table-state-icon {
	width: 68px;
	height: 68px;
	border-radius: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #eaf9f6;
	color: #00a98f;
	flex-shrink: 0
}

.table-state-icon svg {
	width: 32px;
	height: 32px
}

.table-state-copy h3 {
	font-size: 1.05rem;
	font-weight: 900;
	color: #071f60
}

.table-state-copy p {
	margin-top: 6px;
	max-width: 520px;
	color: #64748b;
	line-height: 1.55
}

.field {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: .85rem 1rem;
	background: white;
	color: #14224b;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.field:focus {
	outline: 0;
	border-color: #7dd3c6;
	box-shadow: 0 0 0 4px rgba(0, 169, 143, .12)
}

.field.is-invalid,
.input-shell.is-invalid,
.select-field .field.is-invalid {
	border-color: #f87171 !important;
	box-shadow: 0 0 0 4px rgba(248, 113, 113, .12) !important
}

.field-block {
	display: block
}

.field-error {
	display: block;
	margin-top: .5rem;
	font-size: .82rem;
	font-weight: 700;
	color: #dc2626
}

.form-feedback {
	border-radius: 16px;
	padding: 14px 16px;
	font-weight: 700;
	border: 1px solid #dbe3ef;
	background: #f8fbff;
	color: #445174
}

.form-feedback[hidden] {
	display: none
}

.form-feedback-error {
	background: #fef2f2;
	border-color: #fecaca;
	color: #b91c1c
}

.input-shell {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 .95rem;
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.input-shell:focus-within {
	border-color: #7dd3c6;
	box-shadow: 0 0 0 4px rgba(0, 169, 143, .12)
}

.input-shell-icon {
	width: 20px;
	height: 20px;
	color: #94a3b8;
	flex-shrink: 0
}

.field-ghost {
	border: 0;
	box-shadow: none !important;
	background: transparent;
	padding: 0.85rem 0
}

.input-shell-action {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #94a3b8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer
}

.input-shell-action:hover {
	background: #f1f5f9;
	color: #334155
}

select.field {
	appearance: none;
	padding-right: 3rem;
	background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
	background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat
}

.select-field {
	position: relative;
	display: block
}

.select-field::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #64748b;
	border-bottom: 2px solid #64748b;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
	z-index: 1;
	transition: transform 0.2s ease
}

.select-field.open::after {
	transform: translateY(-35%) rotate(-135deg)
}

.select-field .field {
	background-image: none
}

.custom-select {
	position: relative;
	width: 100%;
	cursor: pointer
}

.custom-select-trigger {
	padding: 14px 48px 14px 18px;
	border: 1px solid #d9e2ef;
	border-radius: 14px;
	background: #fff;
	font-size: 1rem;
	color: #071f60;
	transition: all 0.2s ease;
	min-height: 52px;
	display: flex;
	align-items: center
}

.custom-select-trigger:hover {
	border-color: #9fded3;
	box-shadow: 0 0 0 4px rgba(0, 169, 143, 0.08)
}

.custom-select.open .custom-select-trigger {
	border-color: #00a98f;
	box-shadow: 0 0 0 4px rgba(0, 169, 143, 0.12)
}

.custom-select-options {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #d9e2ef;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(7, 31, 96, 0.12);
	max-height: 280px;
	overflow-y: auto;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.2s ease
}

.custom-select.open .custom-select-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.custom-select-option {
	padding: 12px 18px;
	cursor: pointer;
	transition: background 0.15s ease;
	color: #475569;
	font-size: 0.95rem
}

.custom-select-option:hover {
	background: #f8fffd;
	color: #071f60
}

.custom-select-option.selected {
	background: linear-gradient(135deg, #e6f9f6, #f0fdfb);
	color: #00a98f;
	font-weight: 700
}

.custom-select-option:first-child {
	border-radius: 14px 14px 0 0
}

.custom-select-option:last-child {
	border-radius: 0 0 14px 14px
}

.custom-icon-select {
	position: relative;
	width: 100%;
	cursor: pointer
}

.custom-icon-select-trigger {
	padding: 14px 48px 14px 18px;
	border: 1px solid #d9e2ef;
	border-radius: 14px;
	background: #fff;
	font-size: 1rem;
	color: #071f60;
	transition: all 0.2s ease;
	min-height: 52px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.custom-icon-select-trigger svg {
	width: 22px;
	height: 22px;
	color: #64748b;
}

.custom-icon-select-trigger:hover {
	border-color: #9fded3;
	box-shadow: 0 0 0 4px rgba(0, 169, 143, 0.08)
}

.custom-icon-select.open .custom-icon-select-trigger {
	border-color: #00a98f;
	box-shadow: 0 0 0 4px rgba(0, 169, 143, 0.12)
}

.custom-icon-select-options {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #d9e2ef;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(7, 31, 96, 0.12);
	max-height: 320px;
	overflow-y: auto;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.2s ease;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	padding: 12px;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}

.custom-icon-select-options::-webkit-scrollbar {
	width: 6px;
}

.custom-icon-select-options::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px;
}

.custom-icon-select.open .custom-icon-select-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.custom-icon-select-option {
	padding: 10px 4px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
	color: #475569;
	font-size: 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: 8px;
	border-radius: 10px;
}

.custom-icon-select-option svg {
	width: 24px;
	height: 24px;
	color: #94a3b8;
}

.custom-icon-select-option:hover {
	background: #f8fffd;
	color: #071f60;
	transform: translateY(-2px);
}

.custom-icon-select-option:hover svg {
	color: #00a98f;
}

.custom-icon-select-option.selected {
	background: linear-gradient(135deg, #e6f9f6, #f0fdfb);
	color: #00a98f;
	font-weight: 700;
}

.custom-icon-select-option.selected svg {
	color: #00a98f;
}

.checkbox-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #d9e2ef;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.checkbox-card:hover {
	border-color: #9fded3;
	background: #f8fffd
}

.checkbox-card-compact {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent
}

.checkbox-input {
	position: absolute;
	opacity: 0;
	pointer-events: none
}

.checkbox-ui {
	width: 22px;
	height: 22px;
	border-radius: 7px;
	border: 2px solid #94a3b8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .2s ease;
	background: #fff
}

.checkbox-ui::after {
	content: "";
	width: 10px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) scale(.7);
	opacity: 0;
	transition: opacity .2s ease, transform .2s ease
}

.checkbox-input:checked+.checkbox-ui {
	border-color: #00a98f;
	background: linear-gradient(135deg, #02b99e, #00977f);
	box-shadow: 0 8px 18px rgba(0, 169, 143, .2)
}

.checkbox-input:checked+.checkbox-ui::after {
	opacity: 1;
	transform: rotate(-45deg) scale(1)
}

.checkbox-input:focus-visible+.checkbox-ui {
	box-shadow: 0 0 0 4px rgba(0, 169, 143, .12)
}

.checkbox-text {
	font-weight: 800;
	color: #071f60
}

.admin-table-thumb {
	width: 88px;
	height: 58px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid #dbe3ef;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .08)
}

.repeater-card {
	overflow: visible
}

.repeater-item {
	border: 1px solid #dbe3ef;
	border-radius: 20px;
	padding: 18px;
	background: linear-gradient(180deg, #fff, #f8fbff)
}

.repeater-item-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px
}

.repeater-item-title {
	font-size: .95rem;
	font-weight: 900;
	color: #071f60
}

.repeater-item-actions {
	display: flex;
	align-items: center;
	gap: 8px
}

.hero-highlights {
	align-items: stretch
}

.hero-highlight-item {
	padding: 0 12px;
	border-right: 1px solid #e2e8f0
}

.hero-highlight-item:last-child {
	border-right: 0
}

.service-public-card .btn {
	width: 100%
}

.service-public-card {
	display: flex;
	flex-direction: column;
	height: 100%
}

.service-public-card .p-6 {
	display: flex;
	flex-direction: column;
	flex: 1
}

.action-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px
}

.action-group form {
	margin: 0
}

.action-icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px solid #dbe3ef;
	background: #fff;
	color: #071f60;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
	cursor: pointer
}

.action-icon:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(15, 23, 42, .12)
}

.action-icon svg {
	width: 18px;
	height: 18px
}

.action-icon-default:hover {
	border-color: #bcd7f5;
	background: #f8fbff
}

.action-icon-success {
	color: #047857;
	border-color: #bae6d4;
	background: #ecfdf5
}

.action-icon-danger {
	color: #b91c1c;
	border-color: #fecaca;
	background: #fef2f2
}

.modal-open {
	overflow: hidden
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, .45);
	backdrop-filter: blur(4px);
	z-index: 90
}

.confirm-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 91
}

.confirm-modal-card {
	width: min(100%, 460px);
	background: #fff;
	text-align: center;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	box-shadow: 0 30px 80px rgba(15, 23, 42, .25);
	padding: 28px
}

.confirm-modal-icon {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: #fff7ed;
	color: #c2410c;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px
}

.confirm-modal-copy h2 {
	font-size: 1.4rem;
	font-weight: 950;
	color: #071f60
}

.confirm-modal-copy p {
	margin-top: 10px;
	color: #64748b;
	line-height: 1.6
}

.confirm-modal-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px
}

.image-field {
	display: grid;
	grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
	gap: 20px;
	padding: 18px;
	border-radius: 20px;
	border: 1px solid #dbe3ef;
	background: linear-gradient(180deg, #fff, #f8fbff)
}

.image-field-preview {
	position: relative;
	min-height: 200px;
	border-radius: 18px;
	background: #eef6ff;
	overflow: hidden;
	border: 1px dashed #bfd0e8
}

.image-field-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.image-field-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	color: #64748b;
	gap: 8px
}

.image-field-placeholder strong {
	color: #071f60
}

.image-field-placeholder-icon {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: #eaf9f6;
	color: #00a98f;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.image-field-controls {
	display: grid;
	gap: 18px
}

.upload-field {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: .9rem 1.1rem;
	border-radius: 14px;
	border: 1px dashed #94a3b8;
	background: #fff;
	color: #071f60;
	font-weight: 800;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease
}

.upload-field:hover {
	border-color: #00a98f;
	background: #f8fffd;
	box-shadow: 0 12px 30px rgba(0, 169, 143, .08)
}

.upload-field input {
	display: none
}

.image-field-help {
	display: block;
	color: #64748b;
	line-height: 1.5
}

textarea.field {
	resize: vertical;
	min-height: 120px
}

.label {
	display: block;
	font-weight: 800;
	color: #071f60;
	margin-bottom: .45rem
}

.badge {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: .25rem .65rem;
	font-size: .78rem;
	font-weight: 800
}

.badge-active,
.badge-sent,
.badge-approved,
.badge-published,
.badge-new {
	background: #dcfce7;
	color: #166534
}

.badge-inactive,
.badge-draft,
.badge-pending,
.badge-in_review,
.badge-activated {
	background: #fef3c7;
	color: #92400e
}

.badge-rejected,
.badge-cancelled,
.badge-closed {
	background: #fee2e2;
	color: #991b1b
}

.prose p {
	margin: 1rem 0
}

.prose h2,
.prose h3 {
	font-size: 1.5rem;
	line-height: 1.2;
	color: var(--navy);
	font-weight: 900;
	margin: 2rem 0 1rem
}

.prose strong {
	color: var(--navy)
}

@media(max-width:1200px) {
	.container {
		padding: 0 20px
	}

	.admin-logo-full {
		height: 70px;
	}

	.auth-page {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 100dvh;
		overflow: visible
	}

	.auth-visual {
		display: none
	}

	.auth-panel {
		padding: 24px 18px;
		min-height: 100dvh
	}

	.auth-card {
		padding: 24px 20px
	}

	.admin-shell {
		grid-template-columns: 1fr
	}

	.admin-sidebar {
		position: fixed;
		z-index: 30;
		left: 0;
		bottom: 0;
		transform: translateX(-100%);
		transition: transform .25s ease
	}

	.sidebar-open .admin-sidebar {
		transform: translateX(0)
	}

	.sidebar-collapsed .admin-sidebar {
		width: 300px;
		padding-left: 18px;
		padding-right: 18px
	}

	.sidebar-collapsed .admin-sidebar-header {
		justify-content: space-between
	}

	.sidebar-collapsed .admin-logo-full,
	.sidebar-open .admin-logo-full {
		display: block
	}

	.sidebar-collapsed .admin-logo-icon {
		display: none
	}

	.sidebar-collapsed .admin-nav-label,
	.sidebar-collapsed .admin-collapse-label {
		display: inline
	}

	.sidebar-collapsed .admin-sidebar a {
		justify-content: flex-start;
		padding-left: 16px;
		padding-right: 16px
	}

	.admin-sidebar-close {
		display: inline-flex
	}

	.admin-content {
		padding: 22px
	}

	.admin-topbar {
		padding: 0 18px
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1400px !important;
	}
}

@media(max-width:880px) {
	.hero-highlight-item {
		border-right: 0;
		border-bottom: 1px solid #e2e8f0;
		padding-bottom: 16px
	}

	.hero-highlight-item:nth-last-child(-n+2) {
		border-bottom: 0
	}

	.table thead {
		display: none
	}

	.table,
	.table tbody,
	.table tr,
	.table td {
		display: block;
		width: 100%
	}

	.table tbody {
		padding: 10px
	}

	.table tr {
		background: #fff;
		border: 1px solid #e2e8f0;
		border-radius: 18px;
		margin-bottom: 12px;
		overflow: hidden;
		box-shadow: 0 8px 22px rgba(15, 23, 42, .04)
	}

	.table tr[hidden] {
		display: none !important
	}

	.table td {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 14px;
		padding: 14px 16px
	}

	.table td[title-results]::before {
		content: attr(title-results);
		min-width: 110px;
		font-size: .76rem;
		font-weight: 900;
		letter-spacing: .06em;
		text-transform: uppercase;
		color: #64748b
	}

	.table td br {
		display: none
	}

	.table-state-row td {
		display: block
	}

	.table-state {
		flex-direction: column;
		align-items: flex-start;
		text-align: left
	}

	.repeater-item-toolbar {
		flex-direction: column;
		align-items: flex-start
	}

	.image-field {
		grid-template-columns: 1fr
	}
}

@media (min-width: 768px) {
	.container {
		max-width: none !important;
	}
}

@media(max-width:640px) {
	.toast-region {
		top: 14px;
		right: 14px;
		left: 14px;
		width: auto
	}
}