.server-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	list-style-type: none;
	padding: 0;
}
ul.server-list {
	margin: 0;
}
.server-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1em;
	border: 1px solid #ccc;
	border-radius: 4px;
	transition: background-color 0.2s;
	box-shadow: 1px 1px 1px #ddd;
	position: relative;
}
.server-list-item a:hover {
	text-decoration: underline;
}
.server-list-item:hover {
	background-color: #f5f5f5;
}
.hovnone:hover {
	background-color: transparent;
}
.server-list-item a {
	display: block;
	height: 100%;
	width: 100%;
	line-height: 3;
	text-decoration: none;
}
.server-list-comment {
	color: #888;
	font-size: 0.9em;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.server-list-item--selected {
	font-weight: bold;
	color: #000;
	text-decoration: none;
	line-height: 3;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 4px;
	transition: background-color 0.2s;
	position: relative;
}
.hidden {
	display: none;
}
.filter-btn {
	border: 1px solid #ddd;
	background-color: #f6f8fc;
	border-radius: 10px;
}
.high-function {
	background-color: #ddddff; /* red */
}
.popular {
	background-color: #ddffdd; /* green */
}
.recommended {
	background-color: #ffdddd; /* blue */
}
.cheap {
	background-color: #ffffdd; /* yellow */
}
.litespeed {
	background-color: #ddffff; /* cyan */
}
.server-image {
    display: none;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
.fade-in {
    animation: fadeIn 1s;
}
@media (max-width: 480px) {
.server-list-item, .server-list-item--selected {
	flex-direction: column;
	align-items: flex-start;
}
.server-list-comment {
	line-height: 1.6;
	position: static;
	transform: none;
	margin: 0 0 0.5em 0;
}
}