.pi-donatie-form {
	max-width: 480px;
	margin: 0 auto;
	padding: 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	font-family: inherit;
}

.pi-form-row {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.pi-form-row label {
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #222;
}

.pi-required {
	color: #d9534f;
}

.pi-input,
.pi-donatie-form select {
	width: 100%;
	padding: 10px 12px;
	font-size: 15px;
	border: 1px solid #d5d8dc;
	border-radius: 8px;
	background-color: #fafafa;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
}

.pi-input:focus,
.pi-donatie-form select:focus {
	outline: none;
	border-color: #5b9dd9;
	box-shadow: 0 0 0 3px rgba(91, 157, 217, 0.2);
	background-color: #fff;
}

.pi-bedrag-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.pi-bedrag-btn {
	flex: 1 1 auto;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid #d5d8dc;
	border-radius: 8px;
	background-color: #fafafa;
	color: #222;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pi-bedrag-btn:hover {
	border-color: #5b9dd9;
}

.pi-bedrag-btn.is-active {
	background-color: #2c6ecb;
	border-color: #2c6ecb;
	color: #fff;
}

.pi-submit-btn {
	width: 100%;
	padding: 12px 16px;
	margin-top: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: #2c6ecb;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.pi-submit-btn:hover {
	background-color: #24589f;
}
