/**
 * WiseIQ Rate Freshness Engine — Styles v1.0
 * ─────────────────────────────────────────────────────────────────
 * Styles for freshness badges, live pulse indicators, and rate
 * update alerts across all rate tables and banners.
 */

/* ── Freshness Badge ──────────────────────────────────────────── */
.wiq-rf-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.wiq-rf-badge-live {
  background: #ECFDF5;
  color: #065F46;
  border-color: #6EE7B7;
}
.wiq-rf-badge-updated {
  background: #FFFBEB;
  color: #92400E;
  border-color: #FCD34D;
}
.wiq-rf-text { line-height: 1; }

/* ── Pulse Dot ────────────────────────────────────────────────── */
.wiq-rf-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  animation: wiq-rf-pulse-anim 2s ease-in-out infinite;
}
.wiq-rf-badge-updated .wiq-rf-pulse { background: #F59E0B; }
@keyframes wiq-rf-pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ── Banner Stamp ─────────────────────────────────────────────── */
.wiq-rf-banner-stamp {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #065F46;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  margin-top: 6px;
}
.wiq-rf-banner-stamp .wiq-rf-pulse { width: 5px; height: 5px; }

/* ── APY Badge Verified State ─────────────────────────────────── */
.wiq-rf-apy-verified {
  position: relative;
  cursor: help;
}
.wiq-rf-apy-verified::after {
  content: '✓';
  font-size: 8px;
  color: #10B981;
  margin-left: 3px;
  vertical-align: super;
}

/* ── Fed Rate Stamp ───────────────────────────────────────────── */
.wiq-rf-fed-stamp {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #0369A1;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #BAE6FD;
}
.wiq-rf-fed-stamp .wiq-rf-pulse { background: #0EA5E9; }

/* ── Dark mode ────────────────────────────────────────────────── */
[data-theme="dark"] .wiq-rf-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #6EE7B7;
  border-color: rgba(110, 231, 183, 0.3);
}
[data-theme="dark"] .wiq-rf-badge-updated {
  background: rgba(245, 158, 11, 0.12);
  color: #FCD34D;
  border-color: rgba(252, 211, 77, 0.3);
}
[data-theme="dark"] .wiq-rf-banner-stamp {
  background: rgba(16, 185, 129, 0.1);
  color: #6EE7B7;
  border-color: rgba(110, 231, 183, 0.2);
}
[data-theme="dark"] .wiq-rf-fed-stamp {
  color: #7DD3FC;
  border-color: rgba(125, 211, 252, 0.2);
}
