/* styling for the tag cloud */
.tagsFlexContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 15px;
	margin-top: 25px;
	width: calc(100% - 40px);
	}

.tag { 
	position: relative;
	background-color: #0d6efd;
	padding: 0.75ex 1.5ex;
	margin: 5px;
	border-radius: 0 5px 5px 0;
	box-shadow:  3px 3px 5px rgba(0,0,0, 0.5);
	cursor: pointer;
}

.tag:active {transform: translateY(2px);}

.active {
	font-weight: bold;
	box-shadow:  3px 3px 5px rgba(255,255,255, 0.5);
}

.inactive {
	text-decoration: line-through;
	text-decoration-thickness: 3px;
}