/* suggestion_style.css - 合理化建议系统样式 (v2 现代设计) */

/* === 设计变量 === */
:root {
	/* 主色调 - 靛蓝 */
	--primary: #4f46e5;
	--primary-dark: #4338ca;
	--primary-light: #eef2ff;
	--primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

	/* 功能色 */
	--success: #10b981;
	--success-light: #ecfdf5;
	--warning: #f59e0b;
	--warning-light: #fffbeb;
	--danger: #ef4444;
	--danger-light: #fef2f2;
	--info: #0ea5e9;
	--info-light: #f0f9ff;

	/* 文字层次 */
	--text-1: #0f172a;
	--text-2: #475569;
	--text-3: #94a3b8;
	--text-4: #cbd5e1;

	/* 背景 */
	--bg-page: #f1f5f9;
	--bg-1: #ffffff;
	--bg-2: #f8fafc;
	--bg-3: #f1f5f9;

	/* 边框 */
	--border: #e2e8f0;
	--border-light: #f1f5f9;

	/* 阴影 */
	--shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
	--shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);

	/* 圆角 */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
	--radius-full: 999px;
}

/* === 基础重置 === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	background: var(--bg-page);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--text-1);
	line-height: 1.5;
}

#suggestion-app { min-height: 100vh; max-width: 480px; margin: 0 auto; background: var(--bg-page); position: relative; }

/* === 导航栏 === */
.sg-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 0;
	z-index: 100;
}
.sg-navbar-title { font-size: 17px; font-weight: 600; color: var(--text-1); letter-spacing: -0.02em; }
.sg-navbar-back {
	font-size: 22px;
	color: var(--text-2);
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	transition: all 0.2s;
}
.sg-navbar-back:hover { background: var(--bg-3); color: var(--text-1); }

/* === 页面头部 === */
.sg-header {
	background: var(--primary-gradient);
	color: #fff;
	padding: 32px 24px 28px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sg-header::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -30px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}
.sg-header::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: -20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
}
.sg-header h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.02em; position: relative; z-index: 1; }
.sg-header p { font-size: 14px; opacity: 0.85; position: relative; z-index: 1; }

/* === 卡片 === */
.sg-card {
	background: var(--bg-1);
	border-radius: var(--radius-lg);
	padding: 20px;
	margin-bottom: 12px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
}

/* === 表单 === */
.sg-form { padding: 20px; }
.sg-form-group { margin-bottom: 20px; }
.sg-form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-1);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.sg-form-label .required { color: var(--danger); }

.sg-input, .sg-select, .sg-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-md);
	font-size: 15px;
	color: var(--text-1);
	background: var(--bg-1);
	transition: all 0.2s;
	font-family: inherit;
}
.sg-input::placeholder, .sg-textarea::placeholder { color: var(--text-4); }
.sg-input:focus, .sg-select:focus, .sg-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.sg-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

/* === 分类标签 === */
.sg-categories { display: flex; flex-wrap: wrap; gap: 10px; }
.sg-category-tag {
	padding: 8px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 500;
	color: var(--text-2);
	cursor: pointer;
	transition: all 0.2s;
	background: var(--bg-1);
	user-select: none;
}
.sg-category-tag:hover { border-color: var(--primary); color: var(--primary); }
.sg-category-tag.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* === 图片上传 === */
.sg-upload-area {
	border: 2px dashed var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	background: var(--bg-2);
}
.sg-upload-area:hover {
	border-color: var(--primary);
	background: var(--primary-light);
}
.sg-upload-icon { font-size: 36px; color: var(--text-3); line-height: 1; }
.sg-upload-text { font-size: 13px; color: var(--text-3); margin-top: 8px; }

.sg-image-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.sg-image-item {
	position: relative;
	width: 88px;
	height: 88px;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
}
.sg-image-item img { width: 100%; height: 100%; object-fit: cover; }
.sg-image-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	background: rgba(15, 23, 42, 0.6);
	color: #fff;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background 0.2s;
}
.sg-image-remove:hover { background: rgba(15, 23, 42, 0.8); }

/* === 按钮 === */
.sg-btn {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: var(--radius-md);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
	letter-spacing: 0.01em;
}
.sg-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.sg-btn-primary {
	background: var(--primary-gradient);
	color: #fff;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.sg-btn-primary:not(:disabled):hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}
.sg-btn-primary:not(:disabled):active { transform: translateY(0); }
.sg-btn-success {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #fff;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.sg-btn-success:not(:disabled):hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.sg-btn-outline {
	background: var(--bg-1);
	border: 1.5px solid var(--border);
	color: var(--text-2);
}
.sg-btn-outline:not(:disabled):hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* === 成功页面 === */
.sg-success {
	text-align: center;
	padding: 60px 24px 40px;
	background: var(--bg-1);
	min-height: 100vh;
}
.sg-success-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #10b981, #34d399);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
	color: #fff;
	box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
	animation: sg-bounce-in 0.5s ease;
}
@keyframes sg-bounce-in {
	0% { transform: scale(0); opacity: 0; }
	60% { transform: scale(1.1); }
	100% { transform: scale(1); opacity: 1; }
}
.sg-success-title { font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.sg-success-desc { font-size: 14px; color: var(--text-3); }
.sg-success-id {
	display: inline-block;
	margin-top: 16px;
	padding: 8px 20px;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: var(--radius-full);
	font-size: 14px;
	font-weight: 600;
	font-family: 'SF Mono', 'Fira Code', monospace;
	letter-spacing: 0.02em;
}

/* === 排行榜 === */
.sg-leaderboard { padding: 20px; }
.sg-rank-item {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	background: var(--bg-1);
	border-radius: var(--radius-lg);
	margin-bottom: 10px;
	box-shadow: var(--shadow-xs);
	border: 1px solid var(--border-light);
	transition: all 0.2s;
}
.sg-rank-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.sg-rank-num {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 15px;
	margin-right: 14px;
	flex-shrink: 0;
}
.sg-rank-num.top-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #fff; box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3); }
.sg-rank-num.top-2 { background: linear-gradient(135deg, #cbd5e1, #94a3b8); color: #fff; }
.sg-rank-num.top-3 { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; }
.sg-rank-num.other { background: var(--bg-3); color: var(--text-3); }
.sg-rank-avatar {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	margin-right: 14px;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid var(--bg-1);
	box-shadow: var(--shadow-xs);
}
.sg-rank-info { flex: 1; min-width: 0; }
.sg-rank-name { font-size: 15px; color: var(--text-1); font-weight: 600; }
.sg-rank-dept { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.sg-rank-points { font-size: 18px; font-weight: 700; color: var(--primary); }

/* === 统计卡片 === */
.sg-stats { display: flex; gap: 12px; padding: 20px; }
.sg-stat-card {
	flex: 1;
	background: var(--bg-1);
	border-radius: var(--radius-lg);
	padding: 18px 12px;
	text-align: center;
	box-shadow: var(--shadow-xs);
	border: 1px solid var(--border-light);
}
.sg-stat-value { font-size: 28px; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
.sg-stat-label { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* === 兑换商品 === */
.sg-items { padding: 20px; }
.sg-item-card {
	background: var(--bg-1);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 14px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: all 0.2s;
}
.sg-item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sg-item-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-2); display: block; }
.sg-item-body { padding: 16px; }
.sg-item-name { font-size: 16px; font-weight: 600; color: var(--text-1); }
.sg-item-desc { font-size: 13px; color: var(--text-3); margin-top: 4px; line-height: 1.5; }
.sg-item-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.sg-item-points { font-size: 20px; font-weight: 700; color: var(--warning); }
.sg-item-stock { font-size: 12px; color: var(--text-3); }

/* === Tab 栏 === */
.sg-tabs {
	display: flex;
	background: var(--bg-1);
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 0;
	z-index: 10;
	padding: 0 8px;
}
.sg-tab {
	flex: 1;
	padding: 14px 8px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-3);
	cursor: pointer;
	border-bottom: 2.5px solid transparent;
	transition: all 0.2s;
}
.sg-tab:hover { color: var(--text-2); }
.sg-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

.sg-tab-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	vertical-align: middle;
}
.sg-badge-danger { background: #ef4444; color: #fff; }
.sg-badge-success { background: #22c55e; color: #fff; }
.sg-badge-muted { background: #94a3b8; color: #fff; }

.sg-btn-unskip {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border: 1px solid var(--primary);
	border-radius: 999px;
	background: transparent;
	color: var(--primary);
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}
.sg-btn-unskip:hover {
	background: var(--primary);
	color: #fff;
}

/* === 加载状态 === */
.sg-loading { text-align: center; padding: 48px 20px; color: var(--text-3); font-size: 14px; }
.sg-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid var(--border);
	border-top-color: var(--primary);
	border-radius: var(--radius-full);
	animation: sg-spin 0.7s linear infinite;
	margin: 0 auto 14px;
}
@keyframes sg-spin { to { transform: rotate(360deg); } }

/* === 空状态 === */
.sg-empty { text-align: center; padding: 48px 20px; color: var(--text-3); font-size: 14px; }
.sg-empty-icon { font-size: 52px; margin-bottom: 14px; opacity: 0.6; }

/* === 积分历史 === */
.sg-point-log {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	background: var(--bg-1);
	border-radius: var(--radius-md);
	margin-bottom: 8px;
	box-shadow: var(--shadow-xs);
	border: 1px solid var(--border-light);
}
.sg-point-log-info { flex: 1; min-width: 0; }
.sg-point-log-type { font-size: 14px; color: var(--text-1); font-weight: 600; }
.sg-point-log-remark { font-size: 12px; color: var(--text-3); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sg-point-log-time { font-size: 11px; color: var(--text-4); margin-top: 2px; }
.sg-point-log-value { font-size: 18px; font-weight: 700; flex-shrink: 0; margin-left: 12px; }
.sg-point-log-value.plus { color: var(--success); }
.sg-point-log-value.minus { color: var(--danger); }

/* === 状态徽章 === */
.sg-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	padding: 3px 10px;
	border-radius: var(--radius-full);
	white-space: nowrap;
}
.sg-badge-blue { background: var(--info-light); color: var(--info); }
.sg-badge-green { background: var(--success-light); color: var(--success); }
.sg-badge-orange { background: var(--warning-light); color: var(--warning); }
.sg-badge-red { background: var(--danger-light); color: var(--danger); }
.sg-badge-grey { background: var(--bg-3); color: var(--text-3); }
.sg-badge-purple { background: var(--primary-light); color: var(--primary); }

/* === 弹窗 === */
.sg-modal-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 100;
	animation: sg-fade-in 0.2s ease;
}
@keyframes sg-fade-in { from { opacity: 0; } to { opacity: 1; } }

.sg-modal {
	width: 100%;
	max-width: 480px;
	max-height: 92vh;
	background: var(--bg-1);
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	display: flex;
	flex-direction: column;
	animation: sg-slide-up 0.3s ease;
}
@keyframes sg-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }

.sg-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 22px;
	border-bottom: 1px solid var(--border-light);
	flex-shrink: 0;
}
.sg-modal-title { font-size: 17px; font-weight: 700; color: var(--text-1); }
.sg-modal-close {
	font-size: 26px;
	color: var(--text-3);
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	transition: all 0.2s;
}
.sg-modal-close:hover { background: var(--bg-3); color: var(--text-1); }

.sg-modal-body {
	padding: 22px;
	overflow-y: auto;
	flex: 1;
	-webkit-overflow-scrolling: touch;
}

/* === 评审打分 === */
.sg-review-suggestion-info { }

.sg-score-row {
	padding: 14px 0;
	border-bottom: 1px solid var(--border-light);
}
.sg-score-row:last-child { border-bottom: none; }

.sg-score-slider-wrap { padding: 4px 0; }
.sg-score-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: var(--bg-3);
	outline: none;
	transition: background 0.2s;
}
.sg-score-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--primary);
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
	transition: transform 0.15s;
}
.sg-score-slider::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}
.sg-score-slider::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--primary);
	cursor: pointer;
	border: none;
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}
.sg-score-labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-4);
	margin-top: 4px;
}

/* 建议选择 */
.sg-rec-options {
	display: flex;
	gap: 10px;
}
.sg-rec-option {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-md);
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-2);
	transition: all 0.2s;
	background: var(--bg-1);
}
.sg-rec-option:hover { border-color: var(--primary); color: var(--primary); }
.sg-rec-option.active {
	border-color: var(--primary);
	background: var(--primary-light);
	color: var(--primary);
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
}
.sg-rec-option.reject.active {
	border-color: var(--danger);
	background: var(--danger-light);
	color: var(--danger);
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

/* 得分条 */
.sg-score-bar-bg {
	width: 100%;
	height: 6px;
	background: var(--bg-3);
	border-radius: 3px;
	overflow: hidden;
}
.sg-score-bar {
	height: 100%;
	background: var(--primary-gradient);
	border-radius: 3px;
	transition: width 0.3s ease;
}

/* === 图片预览 === */
.sg-image-preview-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	animation: sg-fade-in 0.2s ease;
	cursor: zoom-out;
}
.sg-image-preview-img {
	max-width: 95vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: var(--radius-sm);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	cursor: default;
}


/* === Portal 综合管理页 === */
.sg-portal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px 12px;
	background: var(--primary-gradient);
	color: #fff;
}
.sg-portal-user {
	display: flex;
	align-items: center;
	gap: 12px;
}
.sg-portal-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
}
.sg-portal-username {
	font-size: 16px;
	font-weight: 600;
}
.sg-portal-role {
	font-size: 12px;
	opacity: 0.8;
}
.sg-portal-balance {
	text-align: center;
}
.sg-portal-balance-value {
	font-size: 24px;
	font-weight: 700;
}
.sg-portal-balance-label {
	font-size: 11px;
	opacity: 0.8;
}

/* Portal 底部 Tab 栏 */
.sg-portal-tabs {
	display: flex;
	background: var(--bg-1);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 10;
}
.sg-portal-tab {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 4px 8px;
	font-size: 11px;
	font-weight: 500;
	color: var(--text-3);
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	border-bottom: 2px solid transparent;
}
.sg-portal-tab:hover {
	color: var(--primary);
}
.sg-portal-tab.active {
	color: var(--primary);
	border-bottom-color: var(--primary);
}
.sg-portal-tab svg {
	opacity: 0.6;
}
.sg-portal-tab.active svg {
	opacity: 1;
}

/* 内容区 */
.sg-portal-content {
	padding: 0 0 24px;
}

/* 子 Tab */
.sg-sub-tabs {
	display: flex;
	padding: 12px 16px 0;
	gap: 0;
}
.sg-sub-tab {
	flex: 1;
	text-align: center;
	padding: 8px 4px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-3);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all 0.2s;
}
.sg-sub-tab:hover {
	color: var(--text-2);
}
.sg-sub-tab.active {
	color: var(--primary);
	border-bottom-color: var(--primary);
	font-weight: 600;
}

/* 排行榜个人统计 */
.sg-lb-my-stats {
	display: flex;
	justify-content: center;
	gap: 24px;
	padding: 12px 16px;
	font-size: 13px;
	color: var(--text-2);
}
.sg-lb-my-stats strong {
	color: var(--primary);
}

/* 状态 pill（统一） */
.sg-status-pill {
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 999px;
	font-weight: 500;
	white-space: nowrap;
	margin-left: 8px;
	flex-shrink: 0;
}

