/* Update VERSION in class-ccm-completed-rides.php after updates */

.stats-container {
	text-align: left;
	font-family: Arial, sans-serif;
	display: flex;
	flex-wrap: wrap;
	column-gap: 16px;
	row-gap: 8px;
	margin-top: 0;
}

.stat-item {
	display: flex;
	flex: 1 1 200px;
	width: auto;
	align-items: center;
	justify-content: flex-start;
	height: 3.5em;
}

.stat {
	font-size: 3em;
	font-weight: bold;
	color: var(--tec-color-text-primary);
}

.number {
	text-align: right;
}

.label {
	font-size: 0.85em;
	font-weight: normal;
	color: var(--tec-color-text-primary);
	margin-left: 15px;
	text-align: left;
}

@media (max-width: 600px) {
	.stat-item {
		flex: 1 1 100%;
	}
}