/*
 * 应用壳：左侧导航 + 右侧主区。
 */

:root {
	--app-sidebar-width: 250px;
	--ui-surface-0: #f3f5fb;
	--ui-surface-1: #ffffff;
	--ui-surface-2: #eef2fb;
	--ui-border-soft: #dde4f6;
	--ui-border-strong: #d1dbf2;
	--ui-text-main: #0f172a;
	--ui-text-muted: #7082aa;
	--ui-brand: #5c72ea;
	--ui-brand-strong: #4d63dd;
	--ui-radius-sm: 0.7rem;
	--ui-radius-md: 0.9rem;
	--ui-radius-lg: 1rem;
	--ui-shadow-sm: 0 8px 22px rgba(76, 99, 167, 0.08);
	--ui-shadow-md: 0 14px 32px rgba(51, 71, 130, 0.12);
	--ui-focus-ring: 0 0 0 3px rgba(92, 114, 234, 0.18);
}

.app-shell {
	margin: 0;
	min-height: 100vh;
	background: var(--ui-surface-0);
	color: var(--ui-text-main);
	overflow-x: hidden;
	max-width: 100%;
}

.app-layout {
	min-height: 100vh;
	min-width: 0;
	max-width: 100%;
}

.app-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 30;
	width: var(--app-sidebar-width);
	height: 100vh;
	height: 100dvh;
	background: linear-gradient(180deg, #0f1a35 0%, #0a1228 100%);
	color: #dbe3fb;
	padding: 1.1rem 0.9rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 10px 0 30px rgba(6, 12, 30, 0.16);
	min-width: 0;
}

.app-sidebar-top {
	flex-shrink: 0;
	min-width: 0;
}

.app-brand {
	display: flex;
	align-items: center;
	width: 100%;
	color: #f8fbff;
	text-decoration: none;
	padding: 0 0.1rem;
}

.app-brand img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.app-nav {
	margin-top: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1 1 auto;
	min-height: 0;
	min-width: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(138, 160, 255, 0.35) transparent;
}

.app-nav::-webkit-scrollbar {
	width: 5px;
}

.app-nav::-webkit-scrollbar-thumb {
	background: rgba(138, 160, 255, 0.35);
	border-radius: 999px;
}

.app-nav-item {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 0.66rem;
	padding: 0.56rem 0.75rem;
	border-radius: var(--ui-radius-sm);
	text-decoration: none;
	color: #beccf8;
	font-size: 0.92rem;
	border: 0;
	background: transparent;
	transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.app-nav-item span {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.app-nav-item i {
	flex: 0 0 auto;
	width: 1.1rem;
	text-align: center;
}

.app-nav-item:hover:not(.active-parent):not(.app-nav-item-subtle-child) {
	color: #ffffff;
	background: rgba(110, 131, 230, 0.26);
	box-shadow: inset 2px 0 0 rgba(164, 184, 255, 0.85);
	transform: translateX(5px);
}

.app-nav-item.active-parent:hover {
	color: #ffffff;
	background: rgba(110, 131, 230, 0.16);
	transform: translateX(3px);
}

.app-nav-item.active {
	color: #ffffff;
	background: rgba(110, 131, 230, 0.26);
	box-shadow: inset 2px 0 0 rgba(164, 184, 255, 0.85);
}

.app-nav-group {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.app-nav-item.active-parent {
	color: #e2e8ff;
	background: rgba(110, 131, 230, 0.1);
	box-shadow: none;
	font-weight: 600;
}

.app-nav-item.active-parent i {
	color: #c4d2ff;
}

.app-nav-group:has(> .app-nav-item-subtle-child.active) > .app-nav-item:not(.app-nav-item-subtle-child) {
	color: #e2e8ff;
	background: rgba(110, 131, 230, 0.1);
	box-shadow: none;
	font-weight: 600;
}

.app-nav-group:has(> .app-nav-item-subtle-child.active) > .app-nav-item:not(.app-nav-item-subtle-child).active {
	background: rgba(110, 131, 230, 0.1);
	box-shadow: none;
}

.app-nav-item-subtle {
	font-size: 0.84rem;
	padding-left: calc(0.75rem + 5px);
	opacity: 0.94;
}

.app-nav-item-subtle-child {
	margin-left: 0.9rem;
	width: calc(100% - 0.9rem);
	max-width: calc(100% - 0.9rem);
	padding: 0.48rem 0.65rem;
	font-size: 0.82rem;
	color: #afc0f3;
}

.app-nav-item-subtle-child i {
	width: 0.95rem;
	font-size: 0.78rem;
	opacity: 0.92;
}

.app-nav-item-subtle-child:hover {
	color: #ffffff;
	background: rgba(110, 131, 230, 0.18);
	box-shadow: none;
	transform: translateX(4px);
}

.app-nav-item-subtle-child.active {
	color: #ffffff;
	background: rgba(110, 131, 230, 0.34);
	box-shadow: inset 3px 0 0 rgba(164, 184, 255, 0.95);
	font-weight: 600;
}

.app-nav-item-subtle-child.active i {
	opacity: 1;
}

.app-sidebar-bottom {
	margin-top: auto;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.65rem;
	width: 100%;
	min-width: 0;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.app-sidebar-bottom-actions {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0.55rem;
	width: 100%;
	min-width: 0;
}

.app-sidebar-auth-form {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
}

.app-sidebar-visitor {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.45rem;
	width: 100%;
}

.app-sidebar-visitor-box {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	width: 100%;
	min-height: 2.15rem;
	padding: 0 0.62rem;
	border-radius: var(--ui-radius-sm);
	border: 1px solid rgba(138, 160, 255, 0.34);
	background: rgba(54, 71, 138, 0.4);
	color: #e6eeff;
	min-width: 0;
}

.app-sidebar-visitor-box > i {
	flex: 0 0 auto;
	width: 1rem;
	font-size: 0.82rem;
	text-align: center;
	color: rgba(190, 204, 248, 0.88);
}

.app-sidebar-visitor-ip,
.app-sidebar-visitor-city {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.78rem;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-sidebar-visitor-ip {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-variant-numeric: tabular-nums;
	color: rgba(224, 232, 255, 0.95);
}

.app-sidebar-visitor-city {
	color: rgba(214, 224, 255, 0.88);
}

.site-theme-btn,
.app-logout-btn,
.app-login-btn {
	border-radius: var(--ui-radius-sm);
	border: 1px solid rgba(138, 160, 255, 0.34);
	background: rgba(54, 71, 138, 0.4);
	color: #e6eeff;
	height: 2.15rem;
	padding: 0 0.7rem;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.site-theme-btn {
	width: 2.15rem;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.app-logout-btn,
.app-login-btn {
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	writing-mode: horizontal-tb;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-main {
	margin-left: var(--app-sidebar-width);
	min-width: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.app-topbar {
	height: 72px;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 1rem;
	min-width: 0;
	position: sticky;
	top: 0;
	z-index: 20;
	background: linear-gradient(to bottom, rgba(243, 245, 251, 0.96), rgba(243, 245, 251, 0.82));
	backdrop-filter: blur(8px);
}

.app-mobile-nav-btn {
	width: 2.15rem;
	height: 2.15rem;
	border: 1px solid #d7dced;
	background: #fff;
	padding: 0;
}

.app-topbar-search {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 620px;
	height: 2.35rem;
	background: var(--ui-surface-2);
	border: 1px solid var(--ui-border-soft);
	border-radius: var(--ui-radius-md);
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.45rem;
	padding: 0 0.65rem;
	position: relative;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.app-topbar-search i {
	color: #8f9fc4;
}

.app-topbar-search input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 0.9rem;
	color: #33415f;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-topbar-search kbd,
.app-topbar-search-kbd {
	flex: 0 0 auto;
	white-space: nowrap;
	writing-mode: horizontal-tb;
	font-size: 0.72rem;
	background: #fff;
	color: #8091b8;
	border: 1px solid #d9e1f5;
	border-radius: 0.4rem;
	padding: 0.06rem 0.35rem;
	line-height: 1.2;
}

.global-search-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	z-index: 40;
	background: var(--ui-surface-1);
	border: 1px solid #dbe4f6;
	border-radius: var(--ui-radius-md);
	box-shadow: var(--ui-shadow-md);
	max-height: 320px;
	overflow-y: auto;
	padding: 0.35rem;
}

.global-search-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	padding: 0.5rem 0.55rem;
	border-radius: 0.62rem;
	text-decoration: none;
	transition: background-color 0.16s ease;
}

.global-search-item:hover,
.global-search-item.active {
	background: #eef4ff;
}

.global-search-item-title {
	color: #1f2a44;
	font-size: 0.86rem;
	font-weight: 600;
}

.global-search-item-subtitle {
	color: #6b7ea8;
	font-size: 0.78rem;
}

.app-topbar-search:focus-within {
	border-color: var(--ui-border-strong);
	background: var(--ui-surface-1);
	box-shadow: var(--ui-focus-ring);
}

.app-topbar-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 0.7rem;
	min-width: 0;
}

.app-topbar-username {
	max-width: 6.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.app-topbar-poem {
	flex: 1;
	justify-content: center;
	align-items: center;
	padding: 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 500;
	color: #6e7ea6;
	letter-spacing: 0.04em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}

.app-topbar-poem-text {
	--poem-char-count: 14;
	--poem-full-width: calc(var(--poem-char-count) * 1em);
	display: inline-block;
	max-width: var(--poem-full-width);
	overflow: hidden;
	white-space: nowrap;
	border-right: 2px solid color-mix(in srgb, var(--ui-brand) 55%, transparent);
	width: 0;
	animation:
		poem-typing-30s 30s steps(var(--poem-char-count), end) infinite,
		poem-cursor-blink 0.9s steps(1, end) infinite,
		poem-glow-30s 30s ease-in-out infinite;
	position: relative;
}

.app-topbar-poem-text::after {
	content: "";
	position: absolute;
	inset: -2px -18%;
	background: linear-gradient(
		105deg,
		transparent 38%,
		rgba(255, 255, 255, 0.66) 49%,
		rgba(151, 186, 255, 0.56) 52%,
		transparent 62%
	);
	transform: translateX(-140%);
	mix-blend-mode: screen;
	pointer-events: none;
	animation: poem-shine-30s 30s linear infinite;
}

.app-topbar-icon-link {
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #eef2fb;
	color: #526087;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dce2f3;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.app-topbar-icon-link:hover {
	background: #e5edff;
	box-shadow: var(--ui-shadow-sm);
	transform: translateY(-1px);
}

.app-topbar-user {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: #28344f;
	font-size: 0.88rem;
	font-weight: 600;
	min-width: 0;
	flex-shrink: 0;
	transition: color 0.18s ease;
}

.app-topbar-user:hover {
	color: #1e293b;
}

.app-avatar {
	--avatar-accent: #6366f1;
	--avatar-accent-soft: #8b5cf6;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 52%),
		linear-gradient(145deg, var(--avatar-accent) 0%, var(--avatar-accent-soft) 52%, #3b82f6 100%);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.34),
		0 0 0 1px rgba(99, 102, 241, 0.14),
		0 6px 16px rgba(79, 70, 229, 0.22);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.app-topbar-user:hover .app-avatar {
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.38),
		0 0 0 1px rgba(99, 102, 241, 0.22),
		0 8px 18px rgba(79, 70, 229, 0.28);
}

.app-main-body {
	flex: 1 1 auto;
	padding: 0.8rem 1.5rem 1.4rem;
	min-width: 0;
}

[data-bs-theme="light"] .site-theme-btn .theme-toggle-icon-dark {
	display: none !important;
}

[data-bs-theme="dark"] .site-theme-btn .theme-toggle-icon-light {
	display: none !important;
}

[data-bs-theme="dark"] .app-shell {
	background: #121724;
	color: #d8e0f7;
}

[data-bs-theme="dark"] .app-topbar {
	background: linear-gradient(to bottom, rgba(18, 23, 36, 0.96), rgba(18, 23, 36, 0.82));
}

[data-bs-theme="dark"] .app-topbar-search {
	background: #1f2738;
	border-color: #33405a;
}

[data-bs-theme="dark"] .app-topbar-search input {
	color: #d3defa;
}

[data-bs-theme="dark"] .app-topbar-search kbd {
	background: #2a344d;
	color: #9fb1df;
	border-color: #40507a;
}

[data-bs-theme="dark"] .app-topbar-search:focus-within {
	border-color: #556892;
	background: #242f44;
	box-shadow: 0 0 0 3px rgba(117, 142, 219, 0.22);
}

[data-bs-theme="dark"] .global-search-dropdown {
	background: #1d273b;
	border-color: #33415f;
	box-shadow: 0 12px 28px rgba(2, 6, 23, 0.45);
}

[data-bs-theme="dark"] .app-topbar-icon-link {
	background: #232e43;
	border-color: #334463;
	color: #b8c8ef;
}

[data-bs-theme="dark"] .app-topbar-user {
	color: #dbe4fb;
}

[data-bs-theme="dark"] .app-topbar-user:hover {
	color: #f8fafc;
}

[data-bs-theme="dark"] .app-avatar {
	--avatar-accent: #6366f1;
	--avatar-accent-soft: #7c3aed;
	background:
		radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.22), transparent 52%),
		linear-gradient(145deg, #4f46e5 0%, #7c3aed 52%, #2563eb 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.16),
		0 0 0 1px rgba(129, 140, 248, 0.28),
		0 6px 16px rgba(30, 27, 75, 0.45);
}

[data-bs-theme="dark"] .app-topbar-user:hover .app-avatar {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 0 0 1px rgba(165, 180, 252, 0.34),
		0 8px 18px rgba(30, 27, 75, 0.55);
}

[data-bs-theme="dark"] .app-topbar-poem {
	color: #9fb0d8;
}

[data-bs-theme="dark"] .app-topbar-poem-text {
	border-right-color: rgba(151, 183, 255, 0.62);
}

@keyframes poem-typing-30s {
	0% {
		width: 0;
	}
	16% {
		width: var(--poem-full-width);
	}
	80% {
		width: var(--poem-full-width);
	}
	90% {
		width: 0;
	}
	100% {
		width: 0;
	}
}

@keyframes poem-cursor-blink {
	0%,
	49% {
		border-right-color: color-mix(in srgb, var(--ui-brand) 60%, transparent);
	}
	50%,
	100% {
		border-right-color: transparent;
	}
}

@keyframes poem-shine-30s {
	0%,
	42% {
		transform: translateX(-140%);
	}
	56% {
		transform: translateX(140%);
	}
	100% {
		transform: translateX(140%);
	}
}

@keyframes poem-glow-30s {
	0%,
	38%,
	100% {
		text-shadow: 0 0 0 rgba(120, 159, 247, 0);
	}
	48%,
	54% {
		text-shadow: 0 0 12px rgba(120, 159, 247, 0.55), 0 0 22px rgba(120, 159, 247, 0.32);
	}
	64% {
		text-shadow: 0 0 0 rgba(120, 159, 247, 0);
	}
}

[data-bs-theme="dark"] .global-search-item:hover,
[data-bs-theme="dark"] .global-search-item.active {
	background: #2a3a56;
}

[data-bs-theme="dark"] .global-search-item-title {
	color: #d9e4ff;
}

[data-bs-theme="dark"] .global-search-item-subtitle {
	color: #9db2df;
}

[data-bs-theme="dark"] .app-mobile-nav-btn {
	background: #243352;
	border-color: #40507a;
	color: #e8efff;
}

[data-bs-theme="dark"] .app-mobile-nav-btn:hover,
[data-bs-theme="dark"] .app-mobile-nav-btn:focus {
	background: #2d3f61;
	border-color: #556892;
	color: #fff;
}

@media (max-width: 991.98px) {
	.app-sidebar {
		display: none;
	}

	.app-main {
		margin-left: 0;
	}

	.app-topbar {
		height: auto;
		min-height: 3.25rem;
		padding: 0.5rem 0.75rem;
		gap: 0.45rem;
	}

	.app-mobile-nav-btn {
		flex: 0 0 auto;
	}

	.app-topbar-search {
		max-width: none;
		height: 2.15rem;
		padding: 0 0.5rem;
	}

	.app-topbar-search input {
		font-size: 16px;
	}

	.app-topbar-right {
		gap: 0.35rem;
	}

	.app-main-body {
		padding: 0.7rem 0.75rem 1.2rem;
	}
}

@media (max-width: 575.98px) {
	.app-topbar-username {
		display: none !important;
	}
}

.app-mobile-nav {
	width: min(280px, 90vw);
	--bs-offcanvas-bg: transparent;
	--bs-offcanvas-color: #dce5ff;
	background: linear-gradient(180deg, #0f1a35 0%, #0a1228 100%) !important;
	color: #dce5ff !important;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 12px 0 36px rgba(6, 12, 30, 0.28);
}

html[data-bs-theme="dark"] .app-mobile-nav.offcanvas,
html[data-bs-theme="light"] .app-mobile-nav.offcanvas {
	background: linear-gradient(180deg, #0f1a35 0%, #0a1228 100%) !important;
	color: #dce5ff !important;
	border-color: rgba(255, 255, 255, 0.06) !important;
}

.app-mobile-nav .offcanvas-header {
	padding: 1rem 1rem 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: transparent !important;
}

html[data-bs-theme="dark"] .app-mobile-nav .offcanvas-header {
	background: transparent !important;
	border-bottom-color: rgba(255, 255, 255, 0.08) !important;
	color: #f8fbff !important;
}

.app-mobile-nav .offcanvas-body {
	background: transparent !important;
	padding: 0;
	color: inherit;
}

html[data-bs-theme="dark"] .app-mobile-nav .offcanvas-body {
	background: transparent !important;
	color: #dce5ff !important;
}

.app-mobile-nav .offcanvas-title {
	color: #f8fbff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.app-mobile-nav-close {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	padding: 0;
	margin: 0;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.1);
	opacity: 0.95;
	transition: background-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.app-mobile-nav-close:hover,
.app-mobile-nav-close:focus {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.18);
	transform: scale(1.04);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.app-mobile-nav-close:active {
	transform: scale(0.96);
}

.app-mobile-nav-inner {
	padding: 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.app-mobile-nav-inner .app-nav-group {
	gap: 0.1rem;
}

.app-mobile-nav-body {
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
}

.app-mobile-nav-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(138, 160, 255, 0.35) transparent;
}

.app-mobile-nav-scroll::-webkit-scrollbar {
	width: 5px;
}

.app-mobile-nav-scroll::-webkit-scrollbar-thumb {
	background: rgba(138, 160, 255, 0.35);
	border-radius: 999px;
}

.app-mobile-nav-bottom {
	flex-shrink: 0;
	margin-top: 0;
	padding: 0.75rem 0.8rem 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(8, 14, 32, 0.35);
}

.app-site-footer {
	flex-shrink: 0;
	padding: 0.85rem 1.25rem 1.1rem;
	text-align: center;
	font-size: 0.75rem;
	color: #94a3b8;
	border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.app-site-footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.app-site-footer a:hover {
	color: #64748b;
}

[data-bs-theme="dark"] .app-site-footer {
	color: #7f93bc;
	border-top-color: rgba(148, 163, 184, 0.12);
}

[data-bs-theme="dark"] .app-site-footer a:hover {
	color: #b8c9ea;
}
