/**
 * Minervatec Core – Order Export Button Styles
 *
 * Styles the PDF and XLSX download buttons in the
 * WooCommerce My Account → Orders action column.
 */

/* ── Base export button styling ─────────────────────────── */
.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_pdf,
.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_xlsx {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
	border: none;
	cursor: pointer;
	line-height: 1.4;
}

/* ── PDF Button (red tones) ─────────────────────────────── */
.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_pdf {
	background-color: #e74c3c;
	color: #fff;
}

.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_pdf:hover {
	background-color: #c0392b;
	box-shadow: 0 2px 8px rgba(231, 76, 60, 0.35);
}

.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_pdf::before {
	content: "\1F4C4";          /* 📄 document emoji as icon */
	font-size: 14px;
}

/* ── XLSX Button (green tones) ──────────────────────────── */
.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_xlsx {
	background-color: #27ae60;
	color: #fff;
}

.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_xlsx:hover {
	background-color: #1e8449;
	box-shadow: 0 2px 8px rgba(39, 174, 96, 0.35);
}

.woocommerce-orders-table__cell--order-actions
a.woocommerce-button.button.export_xlsx::before {
	content: "\1F4CA";          /* 📊 chart emoji as icon */
	font-size: 14px;
}
