/**
 * css/journalMetricsBlock.css
 *
 * Journal Metrics — sidebar block styles ONLY. This small file is
 * registered for the frontend by JournalMetricsBlockPlugin exactly when
 * the block will render, so the block looks the same on every page of
 * the site without shipping the full dashboard stylesheet site-wide.
 * These rules live here alone (removed from journalMetrics.css); the
 * public metrics page loads both files, which is harmless — there is
 * no overlapping selector between the two.
 */

.jmx-block { font-size: 13px; }
.jmx-block-list { list-style: none; margin: 0; padding: 0; }
.jmx-block-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	padding: 5px 0;
	border-bottom: 1px dashed #e2e8f0;
}
.jmx-block-item:last-child { border-bottom: none; }
.jmx-block-label { color: #475569; }
.jmx-block-value { font-weight: 700; white-space: nowrap; }
.jmx-block-more { display: inline-block; margin-top: 8px; font-size: 12px; }
