/* ============================================================
   天机LTS V12 会员中心样式 - 优化版
   现代设计 · 深色玻璃态 · 更好的用户体验
   ============================================================ */

/* ====== AI 引导条（简化版） ====== */
.member-ai-guide {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
}
.member-ai-guide .ai-guide-body {
  flex: 1;
  min-width: 0;
}
.member-ai-guide .ai-guide-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.member-ai-guide .ai-guide-text {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====== 1. 用户 Hero 卡片 ====== */
.user-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f1a35 0%, #111d3a 40%, #0d1530 100%);
  border: 1px solid rgba(100, 140, 255, 0.12);
  padding: 20px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 140, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.hero-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a6cf7, #648cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.3);
}
.hero-member-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}
.hero-info {
  flex: 1;
  min-width: 0;
  z-index: 1;
}
.hero-nickname {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.hero-level {
  font-size: 12px;
  color: var(--text-secondary);
}
.hero-expire {
  font-size: 10px;
  color: var(--warn);
  margin-top: 2px;
}
.hero-points {
  flex-shrink: 0;
  text-align: center;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}
.hero-points-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero-points-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--warn);
  line-height: 1;
}

/* ====== 2. 快速操作网格 ====== */
.member-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.qa-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: var(--bg-glass);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 12px;
}
.qa-btn:active { transform: scale(0.95); }
.qa-icon { font-size: 22px; transition: transform 0.2s; }
.qa-btn:hover .qa-icon { transform: translateY(-2px); }
.qa-label { font-weight: 500; font-size: 11px; }
.qa-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
}
.qa-checkin { border-color: rgba(245, 158, 11, 0.2); }
.qa-checkin .qa-badge { background: rgba(245, 158, 11, 0.18); color: #f59e0b; }
.qa-checkin:hover { background: rgba(245, 158, 11, 0.06); border-color: rgba(245, 158, 11, 0.35); }
.qa-share .qa-badge { background: rgba(52, 152, 219, 0.15); color: #3498db; }
.qa-share:hover { background: rgba(52, 152, 219, 0.06); border-color: rgba(52, 152, 219, 0.3); }
.qa-contact:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.12); }
.qa-logout { border-color: rgba(255,255,255,0.04); opacity: 0.7; }
.qa-logout:hover { opacity: 1; background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.15); }

/* ====== 3. 积分获取指南 V2 ====== */
.earn-guide-v2 {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(245, 158, 11, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 14px;
}
.earn-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.earn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.earn-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}
.earn-item .earn-icon { font-size: 14px; }
.earn-item strong { color: var(--warn); margin-left: auto; }
.earn-cap {
  margin-top: 10px;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* ====== 4. 通用卡片容器 ====== */
.card-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

/* ======   卡片标题 V2 ====== */
.card-header-v2 {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-card);
}

/* ======   可折叠卡片 ====== */
.member-collapse {}
.member-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.member-collapse-header:hover {
  background: rgba(255, 255, 255, 0.02);
}
.member-collapse-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.collapse-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
}
.member-collapse-arrow {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-out-expo);
}
.member-collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out-expo);
  border-top: 0px solid var(--border-card);
  transition: max-height 0.35s var(--ease-out-expo), border-top 0.01s 0.35s;
}
/* 展开状态 */
.member-collapse.open .member-collapse-arrow {
  transform: rotate(180deg);
}
.member-collapse.open .member-collapse-body {
  max-height: 600px;
  overflow-y: auto;
  border-top: 1px solid var(--border-card);
  transition: max-height 0.4s var(--ease-out-expo), border-top 0s 0s;
}
.points-log-scroll { padding: 0 16px 14px; max-height: 300px; overflow-y: auto; }
.orders-scroll { padding: 0 16px 14px; overflow-x: auto; }

/* ====== 4. 签到日历（紧凑版） ====== */
.checkin-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 10px 14px 12px;
}
.checkin-weekday {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  padding: 2px 0 4px;
}
.checkin-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  transition: all 0.15s;
  position: relative;
}
.checkin-day.checked {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--down);
}
.checkin-day.checked::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--down);
}
.checkin-day.today {
  border-color: rgba(100, 140, 255, 0.5);
  color: var(--text-accent);
  font-weight: 700;
}
.checkin-streak {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}
.checkin-streak b {
  color: var(--warn);
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

/* ====== 5. 积分明细条目 ====== */
.points-log-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 12px;
}
.points-log-item:last-child { border-bottom: none; }
.points-log-item .log-reason { flex: 1; color: var(--text-primary); }
.points-log-item .log-amount { font-weight: 700; margin: 0 12px; }
.points-log-item .log-amount.positive { color: var(--down); }
.points-log-item .log-amount.negative { color: var(--up); }
.points-log-item .log-time { font-size: 10px; color: var(--text-muted); white-space: nowrap; }

/* ====== 6. VIP 升级区域 ====== */
.vip-section-card {
  padding: 0;
}
.vip-plans-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
}
.vip-plan-card-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-card);
  background: rgba(255, 255, 255, 0.015);
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.vip-plan-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.vip-plan-card-v2:hover {
  border-color: rgba(100, 140, 255, 0.2);
  background: rgba(100, 140, 255, 0.03);
}
.vip-plan-card-v2.selected {
  border-color: rgba(100, 140, 255, 0.5);
  background: linear-gradient(135deg, rgba(100, 140, 255, 0.08), rgba(74, 108, 247, 0.04));
  box-shadow: 0 0 24px rgba(100, 140, 255, 0.08);
}
.vip-plan-icon-v2 {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.vip-plan-icon-v2.monthly { background: rgba(52, 152, 219, 0.12); }
.vip-plan-icon-v2.yearly { background: rgba(245, 158, 11, 0.12); }
.vip-plan-info-v2 {
  flex: 1;
  min-width: 0;
}
.vip-plan-name-v2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.vip-plan-features-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.vip-plan-features-v2 span {
  font-size: 10px;
  color: var(--text-secondary);
  background: rgba(100, 140, 255, 0.06);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.vip-plan-price-v2 {
  flex-shrink: 0;
  text-align: right;
}
.vip-plan-price-v2 .price-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--warn);
  line-height: 1;
}
.vip-plan-price-v2 .price-dur {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
}
.vip-plan-badge-v2 {
  position: absolute;
  top: -1px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 0 0 6px 6px;
  color: #fff;
}
.vip-plan-badge-v2.recommend {
  background: linear-gradient(135deg, #4a6cf7, #648cff);
}
.vip-plan-badge-v2.save {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* VIP 提交按钮 */
.btn-vip-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 32px);
  margin: 0 16px 10px;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #4a6cf7, #648cff);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.2);
}
.btn-vip-submit:active { transform: scale(0.97); opacity: 0.9; }
.vip-submit-note {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  padding-bottom: 14px;
}

/* ====== 7. 功能菜单网格 ====== */
.menu-card { padding: 0; }
.menu-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
}
.menu-item-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}
.menu-item-v2:hover {
  background: rgba(255, 255, 255, 0.03);
}
.menu-item-v2:active {
  background: rgba(255, 255, 255, 0.05);
}
.menu-item-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(100, 140, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.menu-item-text {
  flex: 1;
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
}
.menu-item-arrow {
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ====== 8. 未登录引导卡片 ====== */
.login-prompt-v2 {
  text-align: center;
  padding: 32px 20px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.login-prompt-v2::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(100, 140, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.lp-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  z-index: 1;
}
.lp-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2548, #223060);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 32px rgba(74, 108, 247, 0.12);
  position: relative;
  z-index: 1;
}
.lp-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(100, 140, 255, 0.15);
  animation: lp-ring-pulse 2.5s infinite;
}
@keyframes lp-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}
.lp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.lp-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
/* ★ 微信一键登录 — Hero CTA */
.wechat-hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 15px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #07c160, #06ad56);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  box-shadow: 0 6px 28px rgba(7, 193, 96, 0.35);
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}
.wechat-hero-btn .wh-icon { font-size: 22px; }
.wechat-hero-btn:active { transform: scale(0.96); }
.lp-alt-login {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.lp-alt-login:hover { color: var(--text-accent); }
.lp-btn {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #4a6cf7, #648cff);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.25);
  position: relative;
  z-index: 1;
}
.lp-btn:active { transform: scale(0.97); }
.lp-register {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.lp-register span {
  color: var(--text-accent);
  font-weight: 500;
}
.lp-register:hover span { text-decoration: underline; }

/* ====== 9. 未登录 - 等级预览 ====== */
.tiers-preview-v2 {
  margin-bottom: 24px;
}
.tiers-preview-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 12px;
}
.tiers-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}
.tp-card .tp-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  flex-shrink: 0;
}
.tp-badge-hot {
  background: linear-gradient(135deg, #ef4444, #f97316) !important;
  color: #fff !important;
}
.tp-badge-save {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #fff !important;
}
.tp-card .tp-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 60px;
}
.tp-card .tp-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--warn);
  min-width: 60px;
  text-align: center;
}
.tp-card .tp-price span {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}
.tp-card .tp-desc {
  flex: 1;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.tp-monthly {
  border-color: rgba(74, 108, 247, 0.2);
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.04), rgba(74, 108, 247, 0.01));
}
.tp-yearly {
  border-color: rgba(245, 158, 11, 0.15);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), rgba(245, 158, 11, 0.01));
}
.tiers-preview-tip {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
}

/* ======   管理员入口（样式覆盖） ====== */
.admin-menu-entry .menu-item-icon {
  background: rgba(220, 38, 38, 0.1);
}

/* ======   签到成功动画 ====== */
@keyframes checkin-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.qa-checkin.checked-anim .qa-icon {
  animation: checkin-pop 0.4s var(--ease-spring);
}

/* ======   响应式适配 ====== */
@media (max-width: 400px) {
  .hero-points-value { font-size: 24px; }
  .hero-avatar { width: 48px; height: 48px; font-size: 22px; }
  .hero-nickname { font-size: 15px; }
  .member-quick-actions { gap: 6px; }
  .qa-btn { padding: 12px 4px; }
  .qa-icon { font-size: 20px; }
  .qa-label { font-size: 10px; }
  .earn-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-plan-card-v2 { flex-wrap: wrap; }
  .vip-plan-price-v2 { width: 100%; text-align: left; margin-top: 6px; }
  .vip-plan-price-v2 .price-amount { font-size: 18px; }
  .tp-name { min-width: 50px; font-size: 12px !important; }
  .tp-price { min-width: 50px; font-size: 14px !important; }
}

@media (min-width: 768px) {
  .module-section {
    max-width: 560px;
    margin: 0 auto;
  }
  .member-quick-actions { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .earn-grid { grid-template-columns: repeat(3, 1fr); }
  .tiers-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .tp-card {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 18px 14px;
  }
  .tp-card .tp-name { min-width: unset; }
  .tp-card .tp-price { min-width: unset; }
  .tp-card .tp-desc { text-align: center; }
}

/* ====== 滚动条美化 ====== */
.points-log-scroll::-webkit-scrollbar,
.orders-scroll::-webkit-scrollbar,
.member-collapse-body::-webkit-scrollbar {
  width: 4px;
}
.points-log-scroll::-webkit-scrollbar-thumb,
.orders-scroll::-webkit-scrollbar-thumb,
.member-collapse-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* ====== 支付按钮加载状态 ====== */
.btn-vip-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.btn-vip-submit:disabled span::after {
  content: ' ...';
  animation: dots 1.2s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% { content: ' .'; }
  40% { content: ' ..'; }
  60%, 100% { content: ' ...'; }
}

/* ====== 支付状态徽章 ====== */
.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}
.status-badge.status-pending {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}
.status-badge.status-approved {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.status-badge.status-rejected {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}
