.species-grid{
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

.species-item{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75em;
	border: 1px sold #ccc;
	padding: 0.5em;
	border-radius: 5px;
	width: 100%;
	max-width: 400px;
}

.species-thumbnail img{
	width: 100px;
	height: auto;
	display: block;
	border-radius: 4px;
}

.species-info{
	flex: 1;
}

.species-title{
	font-size: 1em;
	font-weight: bold;
	color: #333;
	text-decoration: none;
}

.species-title:hover{
	text-decoration: underline;
}

.species-list-controls{
	display: flex;
	gap: 0.5em;
	margin-bottom: 1em;
	flex-wrap: wrap;
}

.species-list-controls input.species-search,
.species-list-controls select.species-sort{
	padding: 0.4em 0.6em;
	font-size: 1em;
	border: 1px solid #ccc;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: border-color 0.2s;
}

.species-list-controls input.species-search:focus,
.species-list-controls select.species-sort:focus{
	border-color: #0073aa;
	outline: none;
}

.species-list-controls select.species-sort{
	background-image: url('data:image/svg+xml;charset=US-ASCII,<svhg width="10" height="6" xmlns="http://www.w3.org/2000/svg"><path d="M0 015 6 5-6z" fill="%23333"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.5em center;
	background-size: 10px 6px;
	padding-right: 2em;
}