/* Configuration Page Styles */

/* Scoped configuration tab styles to avoid conflicts with left navbar */
.config-tab {
	background-color: #f4f4f4e2;
	border: 1px solid #999;
	border-bottom: none;
	margin-right: 4px;
	padding: 6px 12px;
	cursor: pointer;
	color: #003366;
	box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.1);
	transition: background 0.2s;
	font-weight: 100;
	font-size: 14px;
	border-radius: 10px 10px 0 0;
}

.config-tab:hover {
	background-color: goldenrod;
}

.config-tab.active {
	background-color: #f4f4f4;
	color: navy;
	font-weight: 600;
	box-shadow: none;
	font-size: 14px;
	text-shadow: gray 2px 2px 4px;
}