* { box-sizing: border-box; }
body { background: #f8fafc; margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

.checkin-main { max-width: 520px; margin: 0 auto; }

/* hero 内的统计行：取消底部间距，融入 hero 区域 */
.page-header .stats-row { margin-bottom: 0; padding-bottom: 12px; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-box {
    background: var(--surface); border-radius: 14px;
    border: 1px solid var(--border-light);
    padding: 16px 8px 14px; text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.stat-box:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-icon-circle {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.95rem; margin-bottom: 8px;
}
.stat-box:nth-child(1) .stat-icon-circle { background: #eff6ff; }
.stat-box:nth-child(2) .stat-icon-circle { background: #f0fdf4; }
.stat-box:nth-child(3) .stat-icon-circle { background: #fef3c7; }
.stat-box:nth-child(4) .stat-icon-circle { background: #fefce8; }
.stat-number { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.stat-box:nth-child(1) .stat-number { color: #2563eb; }
.stat-box:nth-child(2) .stat-number { color: #16a34a; }
.stat-box:nth-child(3) .stat-number { color: #d97706; }
.stat-box:nth-child(4) .stat-number { color: #ca8a04; }
.stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

.checkin-btn-wrap { margin-bottom: 12px; }
.checkin-btn { width: 100%; padding: 16px; border: none; border-radius: 14px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.checkin-btn.active { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.checkin-btn.active:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); }
.checkin-btn.active:active { transform: scale(0.98); }
.checkin-btn.done { background: #f1f5f9; color: #94a3b8; cursor: default; }

.reward-toast { background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid #f59e0b; border-radius: 12px; padding: 14px 18px; margin-bottom: 14px; text-align: center; font-size: 0.88rem; color: #92400e; font-weight: 500; display: none; }
.reward-toast.show { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.section-card { background: var(--surface); border-radius: 14px; border: 1px solid var(--border-light); padding: 20px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.section-title {
    font-size: 0.95rem; font-weight: 600; color: var(--text);
    margin: 0 0 14px 0; display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding-bottom: 10px; border-bottom: 1px solid var(--border-light);
    position: relative;
}
.section-title::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 36px; height: 3px; background: var(--primary); border-radius: 2px;
}

.calendar-wrap { background: #fff; border-radius: 14px; border: 1px solid #e2e8f0; padding: 20px; margin-bottom: 16px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.calendar-title { font-size: 0.9rem; font-weight: 600; color: #1e293b; }
.calendar-progress { font-size: 0.78rem; color: #94a3b8; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.calendar-weekday { font-size: 0.7rem; color: #94a3b8; padding: 4px 0; font-weight: 500; }
.calendar-day { padding: 8px 0; font-size: 0.78rem; border-radius: 10px; transition: all 0.15s; }
.calendar-day:not(.empty):not(.future):not(.checked):hover { background: #f1f5f9; }
.calendar-day.checked { background: #2563eb; color: #fff; font-weight: 700; box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.calendar-day.today { border: 2px solid #2563eb; background: #eff6ff; color: #2563eb; font-weight: 600; }
.calendar-day.today.checked { background: #2563eb; color: #fff; border-color: #2563eb; }
.calendar-day.empty { visibility: hidden; }
.calendar-day.future { color: #e2e8f0; }
.calendar-nav-btn { background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 8px; padding: 4px 10px; font-size: 0.8rem; cursor: pointer; transition: all 0.15s; }
.calendar-nav-btn:hover { border-color: var(--primary); color: var(--primary); }
.calendar-nav-btn:disabled { opacity: 0.3; cursor: default; }

.rule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.rule-item {
    background: #f8fafc; border-radius: 10px; border: 1px solid #f1f5f9;
    padding: 10px 14px; display: flex; justify-content: space-between;
    align-items: center; font-size: 0.82rem; transition: all var(--transition);
}
.rule-item:hover { background: #eff6ff; border-color: #bfdbfe; }
.rule-item .rule-desc { color: #475569; }
.rule-item .rule-points { color: #ca8a04; font-weight: 600; }

.milestone-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 10px; margin-bottom: 6px;
    font-size: 0.82rem; transition: all var(--transition);
    position: relative; border-left: 4px solid transparent;
}
.milestone-item:hover { background: #f8fafc; transform: translateX(2px); }
.milestone-item.claimed { border-left-color: #16a34a; }
.milestone-item.reached { border-left-color: #ca8a04; }

/* 成长配置分类标签 */
#shopCategoryTabs .tab-btn {
    padding: 5px 14px;
    font-size: 0.78rem;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

#shopCategoryTabs .tab-btn:hover {
    border-color: #bfdbfe;
    color: #2563eb;
}

#shopCategoryTabs .tab-btn.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* 权益草稿卡片 */
#shopGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.shop-item-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.shop-item-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 12px rgba(37,99,235,0.08);
    transform: translateY(-1px);
}

.shop-item-card:active {
    transform: scale(0.98);
}

.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15,23,42,0.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 9999; animation: fadeIn 0.2s ease; }
.modal-overlay.js-hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box { background: #fff; border-radius: 20px; padding: 28px 24px 20px; max-width: 400px; width: 90%; max-height: 80vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.15); animation: slideUp 0.25s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-title { font-size: 1.1rem; font-weight: 600; color: #1e293b; text-align: center; margin: 0 0 16px 0; }
.option-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.option-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; cursor: pointer; transition: all 0.2s; }
.option-item:hover { border-color: #bfdbfe; background: #eff6ff; }
.option-item:active { transform: scale(0.97); }
.option-item .oi-name { font-size: 0.85rem; font-weight: 500; color: #1e293b; }
.option-item .oi-price { font-size: 0.85rem; font-weight: 600; color: #ca8a04; }
.option-item .oi-tag { font-size: 0.7rem; color: #94a3b8; }
.modal-btn { width: 100%; padding: 12px; border: none; border-radius: 10px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.modal-btn.primary { background: #2563eb; color: #fff; }
.modal-btn.primary:hover { background: #1d4ed8; }
.modal-btn.secondary { background: #f1f5f9; color: #475569; margin-top: 6px; }
.modal-btn.secondary:hover { background: #e2e8f0; }

.history-list { max-height: 300px; overflow-y: auto; }
.history-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-bottom: 1px solid #f1f5f9; font-size: 0.82rem; }
.history-item:last-child { border-bottom: none; }
.history-item .hist-reason { color: #475569; }
.history-item .hist-time { font-size: 0.7rem; color: #94a3b8; margin-top: 2px; }
.history-item .hist-amount.earn { color: #16a34a; font-weight: 600; }
.history-item .hist-amount.spend { color: #dc2626; font-weight: 600; }

.checkin-tip { text-align: center; margin-top: 16px; margin-bottom: 30px; font-size: 0.78rem; color: #94a3b8; }
.checkin-tip strong { color: #2563eb; }

@media (max-width: 480px) {
    .page-header-inner { padding: 24px 0 18px; }
    .page-header h1 { font-size: 1.3rem; }
    .stat-number { font-size: 1.2rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .rule-grid { grid-template-columns: 1fr; }
    #shopGrid { grid-template-columns: 1fr; }
}

/* ====== Checkin 页 inline style 替换 ====== */

/* 成长记录链接 */
.points-history-link {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 400;
    cursor: pointer;
}

/* 权益草稿分类 tab */
.shop-category-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

/* 权益草稿卡片 */
.shop-item-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.shop-item-icon-box {
    font-size: 1.8rem; width: 44px; height: 44px; border-radius: 10px;
    background: #f8fafc; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }
.shop-item-info { flex: 1; min-width: 0; }
.shop-item-name { font-size: 0.9rem; font-weight: 600; color: #1e293b; }
.shop-item-meta { font-size: 0.7rem; color: #94a3b8; margin-top: 1px; }
.shop-item-desc {
    font-size: 0.78rem; color: #64748b; margin-bottom: 10px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.shop-item-bottom { display: flex; justify-content: space-between; align-items: center; }
.shop-item-price { font-size: 1rem; font-weight: 700; color: #ca8a04; }
.shop-item-btn {
    padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 500;
}

/* 里程碑进度条 */
.milestone-progress-section { margin-bottom: 12px; }
.milestone-progress-row {
    display: flex; justify-content: space-between; font-size: 0.8rem; color: #64748b; margin-bottom: 6px;
}
.milestone-progress-bar { height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.milestone-progress-fill {
    height: 100%; background: linear-gradient(90deg, #ca8a04, #eab308);
    border-radius: 4px; transition: width 0.5s;
}

/* 里程碑列表项 */
.milestone-item-icon { font-size: 1rem; }
.milestone-item-label { flex: 1; }
.milestone-item-points { font-weight: 600; }
.milestone-item-status { font-size: 0.72rem; color: var(--text-muted); }

/* 空分类提示 */
.shop-empty-category {
    text-align: center; padding: 40px 0; color: #94a3b8; font-size: 0.85rem;
}

/* 庆祝弹窗 */
.celebrate-icon { font-size: 3rem; margin-bottom: 8px; }
.celebrate-title { margin: 0 0 4px 0; font-size: 1.2rem; color: #1e293b; }
.celebrate-sub { margin: 0 0 4px 0; font-size: 0.85rem; color: #64748b; }
.celebrate-detail { margin: 0 0 16px 0; font-size: 0.82rem; color: #64748b; }
.celebrate-quote-box { background: #f1f5f9; border-radius: 10px; padding: 12px; margin-bottom: 16px; }
.celebrate-quote-text { font-size: 0.78rem; color: #64748b; }
.celebrate-btn {
    width: 100%; padding: 10px; border: none; border-radius: 10px;
    background: #f1f5f9; color: #475569; font-size: 0.85rem; cursor: pointer;
}

/* 权益草稿详情弹窗 */
.detail-icon { font-size: 2.5rem; margin-bottom: 8px; }
.detail-desc { font-size: 0.85rem; color: #64748b; margin: 0 0 4px 0; }
.detail-time { font-size: 0.78rem; color: #94a3b8; margin: 0 0 16px 0; }
.detail-price { font-size: 1.2rem; font-weight: 700; color: #ca8a04; margin-bottom: 16px; }

/* 成长记录弹窗 */
.history-modal-header { text-align: center; margin-bottom: 16px; }
.history-modal-title { margin: 0; font-size: 1.1rem; }
.history-modal-sub { margin: 4px 0 0; font-size: 0.82rem; color: #64748b; }
.history-modal-points { color: #ca8a04; }
.history-modal-earned { color: #16a34a; }
.history-empty { text-align: center; padding: 20px; color: #94a3b8; font-size: 0.82rem; }
.history-close-btn {
    display: block; width: 100%; margin-top: 12px; padding: 10px;
    border: none; border-radius: 10px; background: #f1f5f9; color: #475569;
    font-size: 0.85rem; cursor: pointer;
}

/* 禁用选项 */
.disabled-option { opacity: 0.6; }

/* 高亮颜色 */
.highlight-blue { color: #2563eb; }
.highlight-gold { color: #ca8a04; }
.highlight-green { color: #16a34a; }
.highlight-blue-lg { color: #2563eb; font-size: 1.1rem; }

/* Modal center variant */
.modal-box.modal-center { text-align: center; }

/* Celebration modal box variant */
.modal-box.celebrate-modal-box {
    max-width: 320px;
    padding: 32px 28px 24px;
    text-align: center;
}

/* History modal box variant */
.modal-box.history-modal-box {
    border-radius: 16px;
    padding: 24px;
}

/* ============================================================
   设计版签到页样式（2026-07-19 迁移自 design-mockups/checkin.html）
   ============================================================ */

/* 连续打卡 hero 大数字 */
.streak-hero {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.streak-emoji {
    font-size: 40px;
    line-height: 1;
}
.streak-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-top: 8px;
    white-space: nowrap;
}
.streak-num .unit {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-left: 4px;
}
.streak-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 6px;
}
@media (min-width: 768px) {
    .streak-hero { padding: 36px 24px; }
    .streak-num { font-size: 56px; }
}

/* 打卡统计 3 列 */
.checkin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
@media (max-width: 380px) {
    .checkin-stats { grid-template-columns: 1fr 1fr; }
    .checkin-stat:last-child { grid-column: span 2; }
}
.checkin-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.checkin-stat .num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    white-space: nowrap;
}
.checkin-stat .num .total {
    font-size: 14px;
    color: var(--text-tertiary, #94a3b8);
    font-weight: 500;
}
.checkin-stat .label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    white-space: nowrap;
}

/* 日历卡片 */
.calendar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .calendar-card { padding: 28px; }
}
.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.calendar-title {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}
.calendar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.calendar-nav button {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    white-space: nowrap;
}
.calendar-nav button:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}
.calendar-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
@media (min-width: 768px) {
    .calendar-grid { gap: 8px; }
}
.cal-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary, #94a3b8);
    padding: 6px 0;
    white-space: nowrap;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--border-light, #f1f5f9);
    position: relative;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .cal-day { font-size: 14px; }
}
.cal-day.empty {
    background: transparent;
}
.cal-day.checked {
    background: var(--primary-bg, #eff6ff);
    color: var(--primary);
    font-weight: 700;
}
.cal-day.checked::after {
    content: '✓';
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 9px;
    color: #16a34a;
}
.cal-day.today {
    border: 2px solid var(--primary);
    font-weight: 700;
}
.cal-day.future {
    color: var(--text-tertiary, #94a3b8);
    background: transparent;
}

/* 打卡按钮 */
.checkin-btn-wrap {
    margin-bottom: 20px;
}
.checkin-btn-wrap .btn-checkin-main {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.checkin-btn-wrap .btn-checkin-main:hover:not(:disabled) {
    background: var(--primary-dark, #1d4ed8);
    transform: translateY(-1px);
}
.checkin-btn-wrap .btn-checkin-main:disabled {
    background: var(--border, #e2e8f0);
    color: var(--text-tertiary, #94a3b8);
    cursor: not-allowed;
}
.checkin-status {
    text-align: center;
    font-size: 13px;
    color: #16a34a;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.checkin-status.hidden { display: none; }

/* 奖励说明列表 */
.reward-list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.reward-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.reward-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
}
.reward-item:last-child { border-bottom: none; }
.reward-ico {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--primary-bg, #eff6ff);
}
.reward-body { flex: 1; min-width: 0; }
.reward-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.reward-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.reward-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.reward-tag.done {
    color: #16a34a;
}
.reward-tag.progress {
    color: var(--text-tertiary, #94a3b8);
}

/* 成长记录入口条 */
.points-history-bar {
    margin-bottom: 20px;
}
.points-history-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.points-history-btn:hover {
    border-color: var(--primary);
    background: var(--primary-bg, #eff6ff);
}
.points-history-btn span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.points-history-arrow {
    font-size: 12px;
    color: var(--text-tertiary, #94a3b8);
    font-weight: 500;
}

/* 打卡奖励说明列表（2026-07-19 加回简化版） */
.reward-list {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.reward-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.reward-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light, #f1f5f9);
}
.reward-item:last-child { border-bottom: none; }
.reward-ico {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--primary-bg, #eff6ff);
}
.reward-body { flex: 1; min-width: 0; }
.reward-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.reward-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.reward-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.reward-tag.done {
    color: #16a34a;
}
