/* ABC Cron — admin page styles */

.abc-cron {
	max-width: 1280px;
}

/* ----- Page header ----- */
.abc-cron .abc-cron__title {
	margin: 0 0 4px;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.3;
	color: #1d2327;
}
.abc-cron__sub {
	margin: 0 0 22px;
	color: #646970;
	font-size: 13px;
}

/* ----- Status card ----- */
.abc-cron__status {
	background: #fff;
	border: 1px solid #c3c4c7;
	border-left: 3px solid #2271b1;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
	margin-bottom: 22px;
	padding: 22px 26px;
}

.abc-cron__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #3858a6;
	margin: 0 0 12px;
}

.abc-cron__time {
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
	font-size: 32px;
	font-weight: 500;
	color: #1d2327;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.abc-cron__time-sep { color: #a7aaad; margin: 0 12px; font-weight: 400; }

.abc-cron__foot {
	font-size: 12.5px;
	color: #646970;
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.abc-cron__foot-sep { color: #dcdcde; }
.abc-cron__spawn-state { color: #2c3338; font-weight: 500; }

/* ----- Metric grid (4 stat cards) ----- */
.abc-cron__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 22px;
}
.abc-cron__stat {
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	padding: 16px 18px 18px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}
.abc-cron__stat-eyebrow {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #646970;
	margin: 0 0 4px;
}
.abc-cron__stat-span {
	font-size: 12px;
	color: #8c8f94;
	margin: 0 0 10px;
}
.abc-cron__stat-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.abc-cron__num {
	font-size: 40px;
	font-weight: 600;
	color: #1d2327;
	line-height: .95;
	font-variant-numeric: tabular-nums;
	letter-spacing: -.02em;
}
.abc-cron__num--muted { color: #646970; }
.abc-cron__unit {
	font-size: 13px;
	color: #646970;
	font-weight: 500;
}

/* ----- Recent runs card ----- */
.abc-cron__card {
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}
.abc-cron__card-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #f0f0f1;
}
.abc-cron__card-head h2 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
}
.abc-cron__card-meta {
	font-size: 12px;
	color: #646970;
}
.abc-cron__empty {
	padding: 20px;
	color: #646970;
	margin: 0;
}

.abc-cron__table {
	width: 100%;
	border-collapse: collapse;
}
.abc-cron__table thead th {
	text-align: left;
	font-size: 12px;
	font-weight: 600;
	color: #646970;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 10px 20px;
	background: #fafafa;
	border-bottom: 1px solid #e5e5e7;
}
.abc-cron__table tbody td {
	padding: 12px 20px;
	font-size: 13.5px;
	color: #1d2327;
	border-bottom: 1px solid #f0f0f1;
	font-variant-numeric: tabular-nums;
}
.abc-cron__table tbody tr:last-child td { border-bottom: 0; }
.abc-cron__table tbody tr:hover td { background: #eff5fb; }

.abc-cron__td-time {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 12.5px;
	color: #2c3338;
	position: relative;
	white-space: nowrap;
}
.abc-cron__td-muted { color: #646970; }

.abc-cron__latest {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: #005a87;
	background: #e5f2f9;
	padding: 2px 8px;
	border-radius: 10px;
	margin-left: 12px;
}

.abc-cron__card-foot {
	padding: 10px 20px;
	font-size: 12px;
	color: #646970;
	border-top: 1px solid #f0f0f1;
	background: #fafafa;
	border-radius: 0 0 4px 4px;
}
