#app-plugins-development-button {
	
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: baseline;
	
	border-radius: 2vw;
	
	padding: 0.5vw;
	padding-left: 1vw;
	padding-right: 1vw;
	
	color: rgb(var(--ColorText));
	background-color: rgb(var(--ColorMid));
	
}

#app-plugins-development-button:hover {
	
	color: rgb(var(--ColorTextInvert));
	background-color: rgb(var(--ColorHighlight));
	
}

#app-plugins-development-button i {
	
	color: rgb(var(--ColorText));
	margin-right: 0.5vw;
	
}

#app-plugins-development-button span {
	
	font-weight: bold;
	
}

.app-development-action {
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: baseline;
	
	padding: 0.5vw;
	
	font-weight: bold;
	
	color: rgb(var(--ColorAccentDark));
	background-color: rgb(var(--ColorAccentBright));
	
	border-radius: 1vw;
	
}

.app-development-action:hover {
	
	color: rgb(var(--ColorTextInvert)) !important;
	
}

.app-development-action i {
	
	margin-right: 0.5vw;
	
}