/* Payment Box */
.bhugataan-Dibbaa {
	border: 1px solid #ddd;
	padding: 16px;
	border-radius: 6px;
	max-width: 520px;
	background: #fafafa;
}

.bhugataan-Dibbaa h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 1.2rem;
}

/* Rows */
.paNkti {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid #eee;
}

.paNkti:last-of-type {
	border-bottom: none;
}

/* Labels & Values */
.parchee-naam {
	color: #555;
	min-width: 160px;
}

.parchee-AANnkaDdaa {
	font-family: 'Noto Sans', 'Arial Unicode MS', Arial, sans-serif;
	font-size: 0.87em; /*	87% of parent text size; that is why 'em' is used	*/
						/* most of the text is displayed using Akhil HE and 87% of Noto is bigger than 100% of Akhil HE */
	font-weight: 600;
	text-align: right;
}

/* Monospace for numbers */
.mono {
	font-family: monospace;
	letter-spacing: 0.5px;
}

/* Address */
.pataa {
	margin-top: 10px;
	line-height: 1.4;
}

.copy-text {
	font-size: 1.3em;
}

/* Copy UI */
.copyable {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
	user-select: all;
}

.copy-btn {
	font-size: 0.8rem;
	padding: 2px 6px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	border-radius: 3px;
}

.copy-btn:hover {
	background: #f0f0f0;
}

/* Toast */
.copy-toast {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: #fff;
	padding: 6px 12px;
	font-size: 0.85rem;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.copy-toast.show {
	opacity: 1;
}