#proxy-completion {
	position: fixed;
	max-height: 60vh;
	margin: 0;
	padding: 0;
	overflow: auto;
	background-color: #222;
	color: white;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
	border-radius: var(--input-rounding);

	&:not([data-open]) {
		display: none;
	}

	li {
		list-style-type: none;
		cursor: pointer;
		padding: 0.5em 1em;

		&:hover, &.completion-selected {
			background: gray;
		}

		&.completion-selected {
			background: gray;
		}
	}
}
