.screenshots {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px;
	background-color: rgba(255, 255, 255, 0.3);
	aspect-ratio: 16/ 9;
}

.recent-map {
	display: flex;
	flex-direction: row;
	background-color: rgba(0, 0, 0, 0.3);
	color: var(--lowlight-text);
	padding: 10px 15px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.recent-map:hover {
	background-color: rgba(120, 120, 120, 0.3)
}

.recent-map .name {
	flex: 1 0 50%;
}

.recent-map .role {
	flex: 0 1 60px;
	text-align: center;
}