body {
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
}

.qr-wrapper {
	padding: 10px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
}

.qr-container {
	background: #fff;
	padding: 20px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	text-align: center;
	width: 340px;
	border-radius: 8px;
	box-sizing: border-box;
}

.qr-title {
	background: #343a40;
	color: #fff;
	padding: 10px;
	font-size: 18px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.qr-code {
	margin: 20px auto;
	display: inline-block;
	border: 4px solid;
	border-image-slice: 1;
	border-width: 4px;
	height: 298px;
	box-sizing: border-box;
}

.qrCodeBody canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
}

.amount {
	font-size: 16px;
	margin: 20px 0;
	color: #343a40;
}

.validity {
	font-size: 12px;
	color: #000000;
}

.pay-button {
	background-color: #4CAF50;
}

.download-qr-button{
	background-color: #343a40;
}

.template-4-button{
	color: white;
	padding: 10px !important;
	margin: 10px 0;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}