ui/banishedperks.razor.scss
BanishedPerks {
	position: absolute;
	color: white;
	width: 42px;
	top: 4px;
	right: 4px;
	height: 94%;
	font-family: Nunito;
	font-weight: 800;
	align-content: center;
	justify-content: center;
	align-items: center;
	z-index: 997;
	pointer-events: all;
	justify-content: flex-end;

	.banishedlist {
		position: relative;
		flex-wrap: wrap;
		gap: 7px;
		flex-direction: column;
		height: 100%;
		width: 100%;
		align-content: flex-end;
		justify-content: center;
		opacity: 0.3;
		transition: all 0.5s ease;

		&:hover {
			opacity: 1;
		}
	}
}