/* Select all / none */
.checkbox-controls {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

/* Attributes list area */
#attributes-container {
	max-height: 340px;
	overflow: auto;
	padding: 0.75rem;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: color-mix(in srgb, var(--primary-main-color) 4%, #fff);
}

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

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

/* Responsive */
@media (max-width: 768px) {
	#attributes-container {
		max-height: 300px;
	}
}
