/* Nexi YMD Order: one-line layout and hide sub-labels inside date container */
.bpmi-ymd-ko {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
}

/* Hide per-select labels inside the container (keep the main field label outside) */
.bpmi-ymd-ko > label {
	display: none !important;
}

/* Make selects align nicely even without Select2 */
.bpmi-ymd-ko select {
	min-width: 80px;
}

/* When Select2 is applied, ensure inline rendering stays in one line */
.bpmi-ymd-ko .select2,
.bpmi-ymd-ko .select2-container {
	min-width: 110px;
}

/* Avoid unintended wrapping in some themes */
.bpmi-ymd-ko .select2,
.bpmi-ymd-ko select {
	white-space: nowrap;
}

