/* My Account Invoice Button Styling */
.woocommerce-MyAccount-orders .woocommerce-orders-table__row .woocommerce-orders-table__cell-order-actions a.cgi-invoice-button,
.woocommerce-MyAccount-orders .woocommerce-orders-table__row .woocommerce-orders-table__cell-order-actions a[href*="cgi_invoice"],
.woocommerce-orders-table .woocommerce-orders-table__row .woocommerce-orders-table__cell-order-actions a[href*="cgi_invoice"] {
	display: inline-block;
	padding: 8px 16px;
	background: #f5f5f5 !important;
	color: #333 !important;
	text-decoration: none;
	border: 1px solid #ddd !important;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	margin-left: 5px;
	line-height: 1.4;
}

.woocommerce-MyAccount-orders .woocommerce-orders-table__row .woocommerce-orders-table__cell-order-actions a.cgi-invoice-button:hover,
.woocommerce-MyAccount-orders .woocommerce-orders-table__row .woocommerce-orders-table__cell-order-actions a[href*="cgi_invoice"]:hover,
.woocommerce-orders-table .woocommerce-orders-table__row .woocommerce-orders-table__cell-order-actions a[href*="cgi_invoice"]:hover {
	background: #e8e8e8 !important;
	border-color: #bbb !important;
	color: #000 !important;
}

/* Alternative selector for different WooCommerce themes */
.woocommerce-MyAccount-orders .order-actions a[href*="cgi_invoice"],
.order-actions a[href*="cgi_invoice"],
a.woocommerce-button.cgi-invoice-button {
	display: inline-block;
	padding: 8px 16px;
	background: #f5f5f5 !important;
	color: #333 !important;
	text-decoration: none;
	border: 1px solid #ddd !important;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	margin-left: 5px;
	line-height: 1.4;
}

.woocommerce-MyAccount-orders .order-actions a[href*="cgi_invoice"]:hover,
.order-actions a[href*="cgi_invoice"]:hover,
a.woocommerce-button.cgi-invoice-button:hover {
	background: #e8e8e8 !important;
	border-color: #bbb !important;
	color: #000 !important;
}

/* Invoice Section on Order Details and Thank You Pages */
.woocommerce-order-invoice {
	margin: 20px 0;
	padding: 20px;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 5px;
}

.woocommerce-order-invoice h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	color: #333;
}

.woocommerce-order-invoice p {
	margin-bottom: 15px;
	color: #666;
}

.woocommerce-order-invoice .button.alt {
	background: #0071a1 !important;
	color: #fff !important;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 3px;
	display: inline-block;
	font-weight: 600;
	border: none;
	transition: all 0.3s ease;
}

.woocommerce-order-invoice .button.alt:hover {
	background: #005a87 !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 113, 161, 0.3);
}

