/**
 * The public-facing stylesheet for the plugin.
 *
 * @package    WP_Mahalo
 * @subpackage WP_Mahalo/public
 */

/* Loading state */
.wp-mahalo-invoices-loading {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	color: #666;
	font-size: 14px;
}

.wp-mahalo-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #ddd;
	border-top-color: #333;
	border-radius: 50%;
	animation: wp-mahalo-spin 0.7s linear infinite;
}

@keyframes wp-mahalo-spin {
	to { transform: rotate( 360deg ); }
}

/* Empty / error state */
.wp-mahalo-invoices-empty {
	padding: 20px;
	color: #666;
	font-size: 14px;
	text-align: center;
}

/* Table */
.wp-mahalo-invoices-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	margin: 0;
}

.wp-mahalo-invoices-table thead th {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 2px solid #ddd;
	font-weight: 600;
	color: #333;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.wp-mahalo-invoices-table tbody td {
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

.wp-mahalo-invoices-table tbody tr:last-child td {
	border-bottom: none;
}

.wp-mahalo-invoices-table tbody tr:hover {
	background: #f9f9f9;
}

/* Download button */
.wp-mahalo-invoice-download {
	display: inline-block;
	padding: 5px 14px;
	background: #333;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 13px;
	transition: background 0.2s;
	white-space: nowrap;
}

.wp-mahalo-invoice-download:hover {
	background: #555;
}

/* Responsive */
@media screen and (max-width: 600px) {
	.wp-mahalo-invoices-table thead {
		display: none;
	}

	.wp-mahalo-invoices-table tbody tr {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid #eee;
	}

	.wp-mahalo-invoices-table tbody td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 4px 12px;
		border-bottom: none;
	}

	.wp-mahalo-invoices-table tbody td::before {
		content: attr(data-label);
		font-weight: 600;
		margin-right: 10px;
		color: #666;
		font-size: 12px;
	}

	.wp-mahalo-invoices-table tbody td:last-child {
		justify-content: flex-end;
		padding-top: 8px;
	}
}
