.platform-background-history-card__header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.platform-background-history-card__loading {
	display: block;
	margin: 1rem auto;
}

.platform-background-history-card__section + .platform-background-history-card__section {
	margin-top: 1.25rem;
}

.platform-background-history-card__section h6 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
}

.platform-background-history-card__empty {
	margin: 0;
	color: var(--mud-palette-text-secondary);
}

.platform-background-history-card__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.platform-background-history-card__table th,
.platform-background-history-card__table td {
	padding: 0.55rem 0.45rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	text-align: left;
}

body.dark .platform-background-history-card__table th,
body.dark .platform-background-history-card__table td {
	border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 719px) {
	.platform-background-history-card__header {
		flex-direction: column;
		align-items: stretch;
	}

	.platform-background-history-card__table {
		display: block;
		overflow-x: auto;
	}
}