#SearchBar {
	position: relative;
	top: 144px;
	width: 75vw;
	margin: auto;
	z-index: 1;
}

#SearchBar > input {
	width: 36%;
	max-width: 380px;
	height: 12px;
	font-family: verdana;
	background-color: #0a0a0a;
	background-position: 10px 12px;
	padding: 4px 7px 4px 8px;
	border: 1px solid #ddd;
	color: white;
	margin: auto;
}

#SearchResults {
	list-style-type: none;
	font-family: verdana;
	text-align: center;
	resize: vertical;

	height: fit-content;
	max-height: 75vh;
	overflow-y: auto;

	background-color: rgb(11, 11, 11);
	justify-content: center;

	border: 1px dotted #3861114f;
	position: relative;
	top: 24px;
}

#SearchResults > li {
	background-color: #0A0A0A;
	padding: 3px;
	text-decoration: none;
	font-size: 16px;
	color: white;

	position: relative;
	display: inline-table;
	width: 25%;
	margin: auto 2% 2% auto;
	border: 1px solid #3864614f;
}

#SearchResults > li > span {
	font-size: smaller;
	cursor: pointer;
	margin: auto;
	margin-left: 8px;
	user-select: none;
}

#SearchResults > li > span:hover {
	text-decoration: underline;
}
