.wallet-ledger-statement {
	margin-top: 12px;
}

/* Bandeau solde, façon "Wallet Dashboard" TeraWallet */
.wl-banner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #12142b 0%, #1b1e3d 60%, #23264f 100%);
	color: #fff;
	border-radius: 8px;
	padding: 32px 36px;
	margin-bottom: 24px;
}
.wl-banner-info {
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
}
.wl-banner-notice {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 28px;
	margin-left: 28px;
	border-left: 1px solid rgba(255, 255, 255, .15);
	font-size: 13px;
	line-height: 1.5;
	color: #c7c9ea;
}
.wl-banner-glow {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(108,99,255,.35) 0%, rgba(108,99,255,0) 70%);
	pointer-events: none;
}
.wl-banner-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7c6bff;
	margin-right: 8px;
	vertical-align: middle;
}
.wl-banner-label {
	position: relative;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #b7b9d6;
	vertical-align: middle;
}
.wl-banner-amount {
	position: relative;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
	margin: 10px 0 8px;
}
.wl-banner-amount .woocommerce-Price-amount {
	color: #fff;
}
.wl-banner-sub {
	position: relative;
	display: block;
	font-size: 14px;
	color: #9698c2;
}

/* Tableau des opérations */
.wl-statement-table {
	width: 100%;
	border-collapse: collapse;
}
.wl-statement-table th,
.wl-statement-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
	font-size: 14px;
}
.wl-statement-table thead th {
	background: #fafafa;
	font-weight: 600;
	border-bottom: 2px solid #ddd;
}
.wl-statement-table tbody tr:hover {
	background: #fafcff;
}
.wl-col-credit,
.wl-col-debit,
.wl-col-balance {
	text-align: right;
	white-space: nowrap;
}
.wl-col-date,
.wl-col-ref {
	white-space: nowrap;
}
.wl-col-credit {
	color: #1a7f37;
	font-weight: 600;
}
.wl-col-debit {
	color: #b32d2e;
	font-weight: 600;
}
.wl-col-balance {
	font-weight: 700;
}

/* Ligne de total en pied de tableau */
.wl-total-row {
	background: #12142b;
}
.wl-total-row td {
	border-bottom: none;
	border-top: 2px solid #23264f;
	color: #fff;
	padding: 14px 12px;
}
.wl-total-label {
	text-align: right;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
	font-size: 12px;
	color: #b7b9d6;
}
.wl-total-value {
	font-size: 18px;
	font-weight: 700;
}
.wl-total-value .woocommerce-Price-amount {
	color: #fff;
}

/* En-tête façon papier à en-tête, visible uniquement à l'impression/PDF */
.wl-print-header {
	display: none;
}
.wl-print-header-left {
	font-size: 12px;
	line-height: 1.5;
	color: #000;
}
.wl-print-logo img {
	max-height: 60px;
	margin-bottom: 8px;
}
.wl-print-company {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
}
.wl-print-doc-title {
	font-size: 18px;
	font-weight: 700;
}
.wl-print-doc-date,
.wl-print-doc-client {
	font-size: 13px;
	margin-top: 2px;
}

/* Bouton d'impression */
.wl-print-button-wrap {
	margin-top: 18px;
	text-align: right;
}
.wl-print-button {
	background: #c0392b;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.wl-print-button:hover {
	background: #a5311f;
}

/* Mise en page à l'impression : n'imprime que le relevé, avec en-tête papier */
@media print {
	body * {
		visibility: hidden;
	}
	#wl-print-area,
	#wl-print-area * {
		visibility: visible;
	}
	#wl-print-area {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
	}
	.wl-no-print {
		display: none !important;
	}
	.wl-print-header {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		border-bottom: 2px solid #000;
		padding-bottom: 12px;
		margin-bottom: 20px;
	}
	.wl-print-header-right {
		text-align: right;
	}
	.wl-banner {
		background: #fff !important;
		color: #000 !important;
		border: 1px solid #000;
		border-radius: 0;
	}
	.wl-banner-glow {
		display: none;
	}
	.wl-banner-label,
	.wl-banner-sub,
	.wl-banner-notice {
		color: #000 !important;
	}
	.wl-banner-amount .woocommerce-Price-amount {
		color: #000 !important;
	}
	.wl-banner-notice {
		border-left-color: #000;
	}
	.wl-total-row,
	.wl-total-row td {
		background: #fff !important;
		color: #000 !important;
		border-top: 1px solid #000 !important;
	}
	.wl-total-value .woocommerce-Price-amount {
		color: #000 !important;
	}
	.wl-statement-table,
	.wl-statement-table thead,
	.wl-statement-table tbody,
	.wl-statement-table tfoot,
	.wl-statement-table tr {
		display: table-row-group;
	}
	.wl-statement-table {
		display: table;
	}
	.wl-statement-table thead {
		display: table-header-group;
	}
	.wl-statement-table tbody {
		display: table-row-group;
	}
	.wl-statement-table tfoot {
		display: table-footer-group;
	}
	.wl-statement-table tr {
		display: table-row;
	}
	.wl-statement-table th,
	.wl-statement-table td {
		display: table-cell;
	}
	.wl-statement-table td::before {
		content: none !important;
	}
}

@media screen and (max-width: 782px) {
	.wl-banner {
		flex-direction: column;
		align-items: flex-start;
	}
	.wl-banner-info {
		flex: 1 1 auto;
		max-width: 100%;
	}
	.wl-banner-notice {
		margin-left: 0;
		margin-top: 16px;
		padding: 16px 0 0;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, .15);
		justify-content: flex-start;
		text-align: left;
	}
	.wl-banner-amount {
		font-size: 34px;
	}
	.wl-statement-table thead {
		display: none;
	}
	.wl-statement-table,
	.wl-statement-table tbody,
	.wl-statement-table tfoot,
	.wl-statement-table tr,
	.wl-statement-table td {
		display: block;
		width: 100%;
	}
	.wl-statement-table tbody tr {
		border-bottom: 2px solid #ddd;
		padding: 8px 0;
	}
	.wl-statement-table tbody td {
		border-bottom: none;
		padding: 4px 0;
		text-align: left !important;
	}
	.wl-statement-table tbody td::before {
		content: attr(data-label);
		font-weight: 600;
		display: inline-block;
		min-width: 90px;
		color: #555;
	}
	.wl-total-label {
		text-align: left;
		display: none;
	}
	.wl-total-value {
		text-align: left !important;
	}
	.wl-total-value::before {
		content: attr(data-label) " — Total : ";
		font-weight: 600;
		color: #b7b9d6;
	}
}
