/* PayChangu Forms Payment - Public Styles */

.paychangu-payment-processing {
	text-align: center;
	padding: 40px 20px;
}

.paychangu-payment-processing .spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.paychangu-payment-message {
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
}

.paychangu-payment-success {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.paychangu-payment-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}
