ui/inventoryitempanel.razor.scss
InventoryItemPanel {
	font-weight: bold;
	height: 16vh;
	width: 16vh;

	.container {
		border: 5px gray solid;
		background: rgba(30, 30, 30, 0.7);
		border-radius: 20px;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}

	.title {
		font-size: 25px;
		font-family: Poppins;
		color: #fff;
	}

	.selected {
		border-color: green;
	}
}