/*
 * Ported tw-* / Bootstrap label styling for [label] and [tw_label].
 * Self-contained so converted content renders without the old theme/pressapps CSS.
 * Base rule mirrors Flatco's bundled Bootstrap label; color classes mirror the
 * pressapps color map (default/success/warning/primary/info/danger).
 */
/* Default label style (ported from the old site's custom CSS): white rounded pill,
   light grey border, dark text, normal weight. */
.label,
.label-default {
	display: inline-block;
	border: 1px solid #d1d1d1;
	background: #fff;
	color: #2f2f2f;
	border-radius: 50px;
	font-weight: normal;
	font-size: 90%;
	line-height: 1.6;
	padding: 0 9px 0 7px;
	vertical-align: baseline;
	white-space: nowrap;
}
.label:empty {
	display: none;
}
.label a,
.label a:hover {
	color: #2f2f2f;
}
.label img {
	margin: 0;
}
/* Coloured variants stay solid badges (rare in this content). */
.label-primary,
.label-success,
.label-info,
.label-warning,
.label-danger {
	color: #fff;
	border-color: transparent;
	font-weight: bold;
}
.label-primary { background: #428bca; }
.label-success { background: #468847; }
.label-info    { background: #3a87ad; }
.label-warning { background: #f89406; }
.label-danger  { background: #b94a48; }
