/**
 * ==================================================
 * ACE Status Pill
 * ==================================================
 *
 * Displays reusable assessment status indicators.
 *
 * Used throughout the Assessment Engine to indicate
 * Success, Warning, Danger, Information and Neutral
 * states.
 *
 * @package ACE_Assessment_Engine
 */

.ace-status-pill{

	display:inline-flex;

	align-items:center;

	padding:10px 18px;

	border-radius:999px;

	font-size:.95rem;

	font-weight:700;

	line-height:1;

}

.ace-status-pill--success{

	background:#ECFDF5;

	color:#15803D;

}

.ace-status-pill--danger{

	background:#FEF2F2;

	color:#B91C1C;

}

.ace-status-pill--warning{

	background:#FFF7ED;

	color:#C2410C;

}

.ace-status-pill--info{

	background:#EFF6FF;

	color:#1D4ED8;

}

.ace-status-pill--neutral{

	background:#F3F4F6;

	color:#374151;

}