/* Error box */
.request-custom__error {
	margin: 0 auto 1rem;
	max-width: 920px;
	padding: 0.75rem 1rem;
	border: 1px solid color-mix(in srgb, var(--error-red) 30%, white);
	background: color-mix(in srgb, var(--error-red) 8%, white);
	border-radius: 10px;
	color: #111;
}

/* JSONEditor wrapper */
.jsoneditor-host {
	height: 600px;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

/* Submit button */
.request-qr {
	width: 100%;
}

.request-qr:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}

.jsoneditor-menu {
	display: none;
}

/* Responsive */
@media (max-width: 768px) {
	.jsoneditor-host {
		height: 520px;
	}
}
