/* Styles for Processing Charges Page */
.charges-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.charges-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.charges-card h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f5f9;
	position: relative;
}

.charges-card h3::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #0b4c68;
}

.charges-table-wrapper {
	width: 100%;
	overflow-x: auto;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	margin-top: 15px;
	margin-bottom: 25px;
}

.charges-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: #ffffff;
}

.charges-table th {
	background: #f8fafc;
	border-bottom: 2px solid #e2e8f0;
	color: #334155;
	font-weight: 700;
	text-align: left;
	padding: 14px 18px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.charges-table td {
	padding: 14px 18px;
	font-size: 14px;
	color: #475569;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}

.charges-table tr:last-child td {
	border-bottom: 0;
}

.charges-table tr:hover td {
	background: #f8fafc;
}

.charges-highlight {
	font-weight: 700;
	color: #0b4c68;
}

.bank-details-wrapper {
	margin-top: 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 24px;
}

.bank-details-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.bank-details-table td {
	padding: 10px 0;
	border: 0;
	vertical-align: top;
}

.bank-details-table td.label-col {
	font-weight: 700;
	color: #475569;
	width: 30%;
	font-size: 13.5px;
}

.bank-details-table td.val-col {
	color: #0f172a;
	font-weight: 600;
	font-size: 14px;
}

.charges-alert-box {
	background: rgba(239, 68, 68, 0.04);
	border-left: 4px solid #ef4444;
	border-radius: 0 8px 8px 0;
	padding: 20px;
	margin-top: 25px;
}

.charges-alert-box p {
	margin: 0 0 10px 0;
	color: #ef4444;
	font-weight: 700;
	font-size: 14.5px;
}

.charges-alert-box ul {
	margin: 0;
	padding-left: 20px;
}

.charges-alert-box li {
	color: #64748b;
	font-size: 13.5px;
	line-height: 1.6;
	margin-bottom: 6px;
}

.charges-alert-box li:last-child {
	margin-bottom: 0;
}

/* Mobile Specific Stacked Details View */
@media (max-width: 575.98px) {
	.charges-card {
		padding: 16px !important;
		margin-bottom: 20px !important;
	}
	
	.bank-details-table, 
	.bank-details-table tbody, 
	.bank-details-table tr, 
	.bank-details-table td {
		display: block !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	
	.bank-details-table td {
		padding: 6px 0 !important;
	}
	
	.bank-details-table td.label-col {
		width: 100% !important;
		padding-bottom: 2px !important;
		font-size: 12px !important;
	}
	
	.bank-details-table td.val-col {
		font-size: 14px !important;
		word-break: break-all !important; /* Force break long transaction info/emails */
		padding-bottom: 10px !important;
	}
	
	.bank-details-table tr {
		border-bottom: 1px solid #e2e8f0 !important;
		margin-bottom: 8px !important;
	}
	
	.bank-details-table tr:last-child {
		border-bottom: 0 !important;
		margin-bottom: 0 !important;
	}
}

.qr-code-box {
	text-align: center;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.qr-code-img {
	border: 1px solid #cbd5e1;
	padding: 6px;
	background: #fff;
	width: 150px;
	height: 150px;
	border-radius: 6px;
	object-fit: contain;
}

.qr-code-label {
	font-size: 12px;
	color: #64748b;
	font-weight: 700;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.upi-mobile-btn {
	display: none !important;
}
.upi-desktop-box {
	display: flex !important;
}

@media (max-width: 768px) {
	.upi-mobile-btn {
		display: flex !important;
	}
	.upi-desktop-box {
		display: none !important;
	}
}
