<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Layout helpers
----------------------------------*/
.custom-combobox {
	position: relative;
	display: inline-block;
	width: 250px; /* Both custom-combobox and custom-combobox-input should have the same width */
}
.custom-combobox-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	margin-left: -1px;
	padding: 0;
}
.custom-combobox-input {
	margin: 1px 0;
	padding: 5px 10px;
	width: 250px;
}
.ui-autocomplete {
    max-height: 250px;
    overflow-y: auto;   /* prevent horizontal scrollbar */
    overflow-x: hidden; /* add padding to account for vertical scrollbar */
    z-index:1000 !important;
}</pre></body></html>