/*!
 * Facility Management – TailAdmin-Designsystem (vorkompiliert, lokal)
 *
 * Tailwind-/TailAdmin-basierte Designtokens und Komponenten, vollständig auf
 * #fm-app gescopt, damit das umgebende WordPress-Theme unberührt bleibt.
 * Kein Build-Schritt, keine CDN-Abhängigkeit (CLAUDE.md §3, §7).
 */

/* ---------- Tokens ---------- */
#fm-app {
	--fm-primary: #3c50e0;
	--fm-primary-hover: #2e3fb8;
	--fm-primary-soft: #eef2ff;
	--fm-dark: #1c2434;
	--fm-dark-2: #313d4a;
	--fm-sidebar-text: #dee4ee;
	--fm-heading: #1c2434;
	--fm-body: #64748b;
	--fm-stroke: #e2e8f0;
	--fm-bg: #f1f5f9;
	--fm-white: #ffffff;
	--fm-success: #10b981;
	--fm-success-soft: #daf8e6;
	--fm-warning: #d97706;
	--fm-warning-soft: #fef3c7;
	--fm-danger: #dc2626;
	--fm-danger-soft: #fee2e2;
	--fm-info: #2563eb;
	--fm-info-soft: #dbeafe;
	--fm-muted-soft: #eef2f6;
	--fm-radius: 10px;
	--fm-shadow: 0 1px 3px rgba(16, 24, 40, 0.08), 0 1px 2px rgba(16, 24, 40, 0.06);
	--fm-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Gescopter Reset ---------- */
#fm-app,
#fm-app *,
#fm-app *::before,
#fm-app *::after {
	box-sizing: border-box;
}

#fm-app h1,
#fm-app h2,
#fm-app h3,
#fm-app h4,
#fm-app p,
#fm-app ul,
#fm-app figure {
	margin: 0;
	padding: 0;
}

#fm-app {
	font-family: var(--fm-font);
	font-size: 15px;
	line-height: 1.5;
	color: var(--fm-body);
	-webkit-font-smoothing: antialiased;
}

#fm-app button,
#fm-app input,
#fm-app select,
#fm-app textarea {
	font: inherit;
	color: inherit;
}

#fm-app a {
	text-decoration: none;
}

#fm-app .fm-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Shell-Layout (mobile-first) ---------- */
#fm-app .fm-shell {
	position: relative;
	display: flex;
	min-height: 75vh;
	background: var(--fm-bg);
	border: 1px solid var(--fm-stroke);
	border-radius: 12px;
	overflow: hidden;
}

#fm-app .fm-main {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
}

/* ---------- Sidebar ---------- */
#fm-app .fm-sidebar {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 40;
	display: flex;
	flex-direction: column;
	width: 16.25rem;
	height: 100%;
	background: var(--fm-dark);
	transform: translateX(-100%);
	transition: transform 0.2s ease;
}

#fm-app.fm-sidebar-open .fm-sidebar {
	transform: translateX(0);
}

#fm-app .fm-overlay {
	position: absolute;
	inset: 0;
	z-index: 30;
	background: rgba(15, 23, 42, 0.5);
}

#fm-app .fm-sidebar-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 1.25rem 1.25rem 1rem;
}

#fm-app .fm-brand-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 8px;
	background: var(--fm-primary);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

#fm-app .fm-brand-name {
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
}

#fm-app .fm-nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.5rem 0.75rem 1.25rem;
}

#fm-app .fm-nav-link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.6rem 0.85rem;
	border-radius: 7px;
	color: var(--fm-sidebar-text);
	font-weight: 500;
}

#fm-app .fm-nav-link:hover {
	background: var(--fm-dark-2);
	color: #fff;
}

#fm-app .fm-nav-link.is-active {
	background: var(--fm-dark-2);
	color: #fff;
}

#fm-app .fm-nav-link .fm-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 auto;
}

/* ---------- Topbar ---------- */
#fm-app .fm-topbar {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.8rem 1rem;
	background: var(--fm-white);
	border-bottom: 1px solid var(--fm-stroke);
}

#fm-app .fm-topbar-title {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--fm-heading);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#fm-app .fm-topbar-user {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

#fm-app .fm-user-name {
	display: none;
	font-weight: 500;
	color: var(--fm-heading);
}

#fm-app .fm-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.55rem;
	border: 1px solid var(--fm-stroke);
	border-radius: 7px;
	background: var(--fm-white);
	cursor: pointer;
}

#fm-app .fm-burger-bar {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background: var(--fm-heading);
}

/* ---------- Content & Footer ---------- */
#fm-app .fm-content {
	flex: 1 1 auto;
	padding: 1rem;
}

#fm-app .fm-footer {
	padding: 0.85rem 1rem;
	border-top: 1px solid var(--fm-stroke);
	font-size: 0.8rem;
	text-align: center;
	color: var(--fm-body);
	background: var(--fm-white);
}

#fm-app .fm-page-head {
	margin-bottom: 1.1rem;
}

#fm-app .fm-page-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--fm-heading);
}

#fm-app .fm-page-sub {
	margin-top: 0.25rem;
	font-size: 0.88rem;
}

/* ---------- Karten ---------- */
#fm-app .fm-card {
	background: var(--fm-white);
	border: 1px solid var(--fm-stroke);
	border-radius: var(--fm-radius);
	box-shadow: var(--fm-shadow);
}

#fm-app .fm-card-header {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--fm-stroke);
}

#fm-app .fm-card-title {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--fm-heading);
}

#fm-app .fm-card-body {
	padding: 1.25rem;
}

#fm-app .fm-no-access {
	padding: 1.5rem;
	text-align: center;
}

#fm-app .fm-no-access .fm-card-title {
	margin-bottom: 0.4rem;
}

/* ---------- KPI-Grid & KPI-Karten ---------- */
#fm-app .fm-grid-kpi {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

#fm-app .fm-card-kpi {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1.1rem;
	background: var(--fm-white);
	border: 1px solid var(--fm-stroke);
	border-radius: var(--fm-radius);
	box-shadow: var(--fm-shadow);
}

/* Verlinkte KPI-Karte (führt in den jeweiligen Modulbereich). */
#fm-app a.fm-card-kpi-link {
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

#fm-app a.fm-card-kpi-link:hover,
#fm-app a.fm-card-kpi-link:focus-visible {
	transform: translateY(-2px);
	border-color: var(--fm-primary);
	box-shadow: var(--fm-shadow-lg, 0 6px 18px rgba(15, 23, 42, 0.12));
}

#fm-app .fm-kpi-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	flex: 0 0 auto;
	border-radius: 999px;
	background: var(--fm-primary-soft);
	color: var(--fm-primary);
}

#fm-app .fm-kpi-icon .fm-icon {
	width: 1.5rem;
	height: 1.5rem;
}

#fm-app .fm-accent-success .fm-kpi-icon {
	background: var(--fm-success-soft);
	color: var(--fm-success);
}

#fm-app .fm-accent-warning .fm-kpi-icon {
	background: var(--fm-warning-soft);
	color: var(--fm-warning);
}

#fm-app .fm-accent-danger .fm-kpi-icon {
	background: var(--fm-danger-soft);
	color: var(--fm-danger);
}

#fm-app .fm-accent-info .fm-kpi-icon {
	background: var(--fm-info-soft);
	color: var(--fm-info);
}

#fm-app .fm-kpi-meta {
	min-width: 0;
}

#fm-app .fm-kpi-value {
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--fm-heading);
}

#fm-app .fm-kpi-label {
	margin-top: 0.1rem;
	font-size: 0.88rem;
	font-weight: 500;
}

#fm-app .fm-kpi-meta .fm-badge {
	margin-top: 0.4rem;
}

/* ---------- Badges ---------- */
#fm-app .fm-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.12rem 0.6rem;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 600;
}

#fm-app .fm-badge-muted {
	background: var(--fm-muted-soft);
	color: var(--fm-body);
}

#fm-app .fm-badge-success {
	background: var(--fm-success-soft);
	color: #047857;
}

#fm-app .fm-badge-warning {
	background: var(--fm-warning-soft);
	color: #92400e;
}

#fm-app .fm-badge-danger {
	background: var(--fm-danger-soft);
	color: #b91c1c;
}

#fm-app .fm-badge-info {
	background: var(--fm-info-soft);
	color: #1d4ed8;
}

/* ---------- Buttons ---------- */
#fm-app .fm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 2.75rem;
	padding: 0.55rem 1.1rem;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.92rem;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

#fm-app .fm-btn-primary {
	background: var(--fm-primary);
	color: #fff;
}

#fm-app .fm-btn-primary:hover {
	background: var(--fm-primary-hover);
	color: #fff;
}

#fm-app .fm-btn-ghost {
	background: transparent;
	border-color: var(--fm-stroke);
	color: var(--fm-heading);
}

#fm-app .fm-btn-ghost:hover {
	background: var(--fm-bg);
}

/* ---------- Formulare ---------- */
#fm-app .fm-field {
	margin-bottom: 1.15rem;
}

#fm-app .fm-field > label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 500;
	color: var(--fm-heading);
}

#fm-app .fm-input,
#fm-app .fm-select,
#fm-app .fm-textarea {
	width: 100%;
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--fm-stroke);
	border-radius: 8px;
	background: var(--fm-white);
	color: var(--fm-heading);
}

#fm-app .fm-input:focus,
#fm-app .fm-select:focus,
#fm-app .fm-textarea:focus {
	outline: none;
	border-color: var(--fm-primary);
	box-shadow: 0 0 0 3px rgba(60, 80, 224, 0.15);
}

#fm-app .fm-help {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--fm-body);
}

#fm-app .fm-checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

#fm-app .fm-checkbox-row input[type="checkbox"] {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.2rem;
	accent-color: var(--fm-primary);
}

#fm-app .fm-checkbox-row > label {
	font-weight: 500;
	color: var(--fm-heading);
}

#fm-app .fm-field-error {
	margin-top: 0.3rem;
	font-size: 0.8rem;
	color: var(--fm-danger);
}

/* ---------- Hinweise ---------- */
#fm-app .fm-notice {
	margin-bottom: 1rem;
	padding: 0.8rem 1rem;
	border-radius: 8px;
	border-left: 4px solid var(--fm-info);
	background: var(--fm-info-soft);
	color: var(--fm-heading);
	font-weight: 500;
}

#fm-app .fm-notice-success {
	border-left-color: var(--fm-success);
	background: var(--fm-success-soft);
}

#fm-app .fm-notice-error {
	border-left-color: var(--fm-danger);
	background: var(--fm-danger-soft);
}

#fm-app .fm-notice-warning {
	border-left-color: var(--fm-warning);
	background: var(--fm-warning-soft);
}

/* ---------- Tabellen (Basis für Fachmodule) ---------- */
#fm-app .fm-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--fm-white);
	font-size: 0.9rem;
}

#fm-app .fm-table th {
	padding: 0.7rem 0.9rem;
	text-align: left;
	font-weight: 600;
	color: var(--fm-heading);
	background: var(--fm-bg);
	border-bottom: 1px solid var(--fm-stroke);
}

#fm-app .fm-table td {
	padding: 0.7rem 0.9rem;
	border-bottom: 1px solid var(--fm-stroke);
}

#fm-app .fm-table tr:hover td {
	background: #f8fafc;
}

/* ---------- Login / Auth ---------- */
#fm-app .fm-auth-wrap {
	display: flex;
	justify-content: center;
	padding: 2.5rem 1rem;
	background: var(--fm-bg);
	border: 1px solid var(--fm-stroke);
	border-radius: 12px;
}

#fm-app .fm-auth-card {
	width: 100%;
	max-width: 26rem;
	padding: 2rem 1.5rem;
	text-align: center;
}

#fm-app .fm-auth-badge {
	width: 3rem;
	height: 3rem;
	font-size: 1rem;
}

#fm-app .fm-auth-title {
	margin: 0.9rem 0 0.35rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--fm-heading);
}

#fm-app .fm-auth-text {
	margin-bottom: 1.25rem;
}

/* ---------- Fließtext (Hilfe) ---------- */
#fm-app .fm-prose h3 {
	margin: 1.1rem 0 0.35rem;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--fm-heading);
}

#fm-app .fm-prose p + p {
	margin-top: 0.6rem;
}

/* ---------- Responsive: Tablet ---------- */
@media (min-width: 640px) {
	#fm-app .fm-grid-kpi {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#fm-app .fm-content {
		padding: 1.5rem;
	}

	#fm-app .fm-user-name {
		display: inline;
	}
}

/* ---------- Responsive: Desktop ---------- */
@media (min-width: 1024px) {
	#fm-app .fm-sidebar {
		position: static;
		transform: none;
		flex: 0 0 16.25rem;
	}

	#fm-app .fm-overlay,
	#fm-app .fm-burger {
		display: none;
	}

	#fm-app .fm-grid-kpi {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1440px) {
	#fm-app .fm-grid-kpi {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ---------- Listen-Toolbar (Suche + Filter) ---------- */
#fm-app .fm-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

#fm-app .fm-toolbar-search {
	flex: 1 1 14rem;
}

#fm-app .fm-toolbar-filter {
	flex: 0 1 11rem;
	width: auto;
}

/* ---------- Seitenkopf mit Aktionen ---------- */
#fm-app .fm-page-head-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

#fm-app .fm-actions-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* ---------- Tabellen-Wrapper (mobile horizontal scrollbar) ---------- */
#fm-app .fm-table-wrap {
	overflow-x: auto;
}

#fm-app .fm-table a {
	color: var(--fm-heading);
}

#fm-app .fm-table a:hover {
	color: var(--fm-primary);
}

#fm-app .fm-table-actions {
	display: flex;
	gap: 0.4rem;
	justify-content: flex-end;
	white-space: nowrap;
}

/* ---------- Pagination ---------- */
#fm-app .fm-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 1rem;
}

#fm-app .fm-pagination-info {
	font-size: 0.85rem;
}

/* ---------- Detail-Layout ---------- */
#fm-app .fm-grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

@media (min-width: 768px) {
	#fm-app .fm-grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

#fm-app .fm-card-spaced {
	margin-top: 0.9rem;
}

#fm-app .fm-card-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

#fm-app .fm-detail-list {
	display: grid;
	grid-template-columns: minmax(6rem, 35%) 1fr;
	gap: 0.45rem 1rem;
	margin: 0;
}

#fm-app .fm-detail-list dt {
	font-weight: 500;
	color: var(--fm-heading);
}

#fm-app .fm-detail-list dd {
	margin: 0;
	overflow-wrap: anywhere;
}

#fm-app .fm-muted {
	color: var(--fm-body);
	font-size: 0.9rem;
}

#fm-app .fm-empty-state {
	padding: 2rem 1.25rem;
	text-align: center;
}

/* ---------- Button-Varianten ---------- */
#fm-app .fm-btn-sm {
	min-height: 2.1rem;
	padding: 0.3rem 0.7rem;
	font-size: 0.82rem;
}

#fm-app .fm-btn-danger {
	background: var(--fm-danger);
	color: #fff;
}

#fm-app .fm-btn-danger:hover {
	background: #b91c1c;
	color: #fff;
}

#fm-app .fm-btn-danger-text {
	color: var(--fm-danger);
}

#fm-app .fm-card-danger {
	border-color: var(--fm-danger-soft);
}

#fm-app .fm-inline-form {
	display: inline-flex;
	margin: 0;
}

/* ---------- Hierarchische Liste (Objektbereiche) ---------- */
#fm-app .fm-tree {
	list-style: none;
	margin: 0;
	padding: 0;
}

#fm-app .fm-tree-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 0 0.5rem calc(var(--fm-depth, 0) * 1.4rem);
	border-bottom: 1px solid var(--fm-stroke);
}

#fm-app .fm-tree-item:last-child {
	border-bottom: none;
}

#fm-app .fm-tree-label {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: baseline;
	min-width: 0;
}

#fm-app .fm-tree-label strong {
	color: var(--fm-heading);
}

#fm-app code {
	font-size: 0.82rem;
	background: var(--fm-bg);
	padding: 0.1rem 0.4rem;
	border-radius: 4px;
}

/* ---------- Einfache Liste (Dokumenten-Dashboard) ---------- */
#fm-app .fm-plain-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

#fm-app .fm-plain-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--fm-stroke);
}

#fm-app .fm-plain-list li:last-child {
	border-bottom: none;
}

/* ============================================================
   Modul Formulare (Phase 7): Felder, Auswahlgruppen, Anhänge,
   Vorlagenauswahl, Lesedarstellung und Kommentare.
   ============================================================ */

/* Zwischenüberschrift innerhalb eines Formulars */
#fm-app .fm-form-section {
	margin: 1.25rem 0 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--fm-heading);
	border-bottom: 1px solid var(--fm-stroke);
	padding-bottom: 0.35rem;
}

/* Radio-/Checkbox-Gruppen mit großen Touch-Zielen (Außendienst) */
#fm-app .fm-choice-group {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

#fm-app .fm-choice {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	min-height: 44px;
	padding: 0.35rem 0.5rem;
	border: 1px solid var(--fm-stroke);
	border-radius: 8px;
	background: var(--fm-white);
	cursor: pointer;
}

#fm-app .fm-choice input {
	width: 1.15rem;
	height: 1.15rem;
	flex: 0 0 auto;
}

#fm-app .fm-field-label {
	display: block;
	font-weight: 500;
	color: var(--fm-heading);
	margin-bottom: 0.35rem;
}

/* Anhangsliste im Ausfüll-/Detailfeld */
#fm-app .fm-file-list {
	list-style: none;
	margin: 0 0 0.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* JSON-Schema-Editor */
#fm-app .fm-code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.85rem;
	line-height: 1.45;
	white-space: pre;
}

#fm-app .fm-mt {
	margin-top: 1rem;
}

/* Vorlagenauswahl als Karten-Raster */
#fm-app .fm-grid-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	#fm-app .fm-grid-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	#fm-app .fm-grid-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

#fm-app .fm-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

#fm-app .fm-card-link:hover {
	box-shadow: 0 4px 12px rgba(16, 24, 40, 0.12);
	transform: translateY(-1px);
}

/* Schreibgeschützte Antwortdarstellung (Detail) */
#fm-app .fm-readonly-field {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.15rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--fm-stroke);
}

@media (min-width: 640px) {
	#fm-app .fm-readonly-field {
		grid-template-columns: 14rem 1fr;
		gap: 1rem;
		align-items: start;
	}
}

#fm-app .fm-readonly-field:last-child {
	border-bottom: none;
}

#fm-app .fm-readonly-label {
	font-weight: 500;
	color: var(--fm-body);
}

#fm-app .fm-readonly-value {
	color: var(--fm-heading);
}

/* Kommentare */
#fm-app .fm-comment-list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

#fm-app .fm-comment {
	padding: 0.6rem 0.75rem;
	background: var(--fm-bg);
	border-radius: 8px;
}

#fm-app .fm-comment-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: baseline;
	margin-bottom: 0.25rem;
}
