/**
 * 状态胶囊 — 前台 / 后台公用（询价 / 报价等业务状态）
 * 口头简称「状态胶囊」；勿与「灰胶囊」(.pss-track-capsule) 混用。
 * 非颜色样式在此统一定义；各 --* modifier 仅负责语义色。
 */

.pss-quote-status,
.pss-inquiry-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	vertical-align: middle;
	box-sizing: border-box;
}

/* 报价状态 */
.pss-quote-status--draft     { background: #f3f3f3; color: #555; }
.pss-quote-status--sent      { background: #cce5ff; color: #004085; }
.pss-quote-status--accepted  { background: #d4edda; color: #155724; }
.pss-quote-status--rejected  { background: #f8d7da; color: #721c24; }
.pss-quote-status--expired   { background: #fff3cd; color: #856404; }
.pss-quote-status--cancelled { background: #e2e3e5; color: #383d41; }

/* 询价状态 */
.pss-inquiry-status--submitted { background: #fff3cd; color: #856404; }
.pss-inquiry-status--reviewing { background: #cce5ff; color: #004085; }
.pss-inquiry-status--quoted    { background: #d4edda; color: #155724; }
.pss-inquiry-status--cancelled { background: #f8d7da; color: #721c24; }
