/**
 * Order History shortcode styles - [quick_order_history]
 */
.month-total {
	float: right;
	font-size: 1.2em;
	font-weight: bold;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 5px;
	margin-bottom: 20px;
}
.order-history-container {
	margin: 20px 0;
}
.order-history-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.order-history-table th,
.order-history-table td {
	padding: 10px;
	border: 1px solid #ddd;
	text-align: left;
}
.order-status {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.9em;
}
.status-placed {
	background-color: #e3f2fd;
	color: #1976d2;
}
.status-hold {
	background-color: #fff3e0;
	color: #f57c00;
}
.status-cancelled {
	background-color: #ffebee;
	color: #c62828;
}
.status-dispatched {
	background-color: #e8f5e9;
	color: #2e7d32;
}
.order-items {
	width: 100%;
	margin: 10px 0;
	background: #f9f9f9;
}
.order-items th,
.order-items td {
	padding: 8px;
	border: 1px solid #eee;
}

/* Most ordered products shortcode */
.most-ordered-products table {
	width: 100%;
	margin-bottom: 20px;
}
.most-ordered-products th,
.most-ordered-products td {
	padding: 10px;
	text-align: left;
}
