
	/* Hide via opacity, not display:none — Chrome anchors the suggestion popup to this box, so it must stay in layout. */
	input.hide-native-picker.svelte-u3psvc::-webkit-calendar-picker-indicator {
		opacity: 0 !important;
		pointer-events: none;
	}

	/* Leave the calendar indicator as the small native icon. Stretching it over the whole
	   field turned every click on a date input into "open the calendar": the popup then sat
	   over the filter panel and ate the next click, and the field could never be clicked
	   into to type a date. The icon still opens the picker on an explicit click. */
	input[type='date'].svelte-u3psvc::-webkit-calendar-picker-indicator {
		cursor: pointer;
	}
