.ms-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 4px;

	width: fit-content;
	padding: 4px;
	border: 1px solid white;
    color: white;

	position: relative;
}

.ms-input {
	border: none;
	order: 1;
	background: none;
	font-family: monospace;
    color: white;
}
.ms-input::placeholder {
    color: white;
}
.ms-input:focus-visible {
	outline: none;
}

.ms-suggestions {
	position: absolute;
	padding: 0;
	margin: 0;
	list-style: none;
	left: -1px;
	top: 100%;
	width: 100%;
	border: 1px solid black;
	background-color: black;
}

.ms-suggestions:empty {
	padding-bottom: 4px;
}
.ms-suggestions:empty::before {
	font-family: monospace;
	padding: 4px;
	content: 'No Characters Found';
}

.ms-suggestions > li {
	font-family: monospace;
	padding: 4px;
	user-select: none;
	cursor: pointer;
}
.ms-suggestions > li:nth-child(odd) {
	background-color: rgb(53, 53, 53);
}
.ms-suggestions > li:hover,
.ms-suggestions > li.ms-highlight {
	background-color: white;
    color: black;
}

.ms-hidden {
	display: none;
}