/* Non-scrolling line styles (centered, tight, scalable icons) */
.spmt-container {
  --spmt-bg: #0f172a;
  --spmt-fg: #e2e8f0;
  --spmt-border-color: #e2e8f0;
  --spmt-font-size: 16px;
  --spmt-icon-size: calc(var(--spmt-font-size) * 1.125);
  position: relative;
  background: var(--spmt-bg);
  color: var(--spmt-fg);
  border: 1px solid var(--spmt-border-color);
  border-radius: 8px;
  padding: 10px 12px 24px;
  font-size: var(--spmt-font-size);
}
.spmt-line { display: flex; flex-wrap: wrap; gap: 0.45em; align-items: center; justify-content: center; }
.spmt-entry { display: inline-flex; align-items: center; gap: 0.25em; }
.spmt-text { display: inline-flex; gap: 0.25em; font-weight: 600; }
.spmt-label { opacity: .85; font-weight: 500; }
.spmt-sep { opacity: .35; padding: 0 0.25em; }
.spmt-updated { position: absolute; left: 12px; right: 12px; bottom: 4px; font-size: 0.7em; opacity: .75; text-align: center; }
.spmt-icon { display: inline-flex; align-items: center; justify-content: center; font-weight: 800; line-height: 1; color: #0f172a; }
.spmt-circle { width: var(--spmt-icon-size); height: var(--spmt-icon-size); border-radius: 9999px; }
.spmt-rect { height: var(--spmt-icon-size); padding: 0 0.28em; border-radius: 4px; }
.spmt-texticon { font-size: calc(var(--spmt-font-size) * 0.7); color: #0f172a; }
.spmt-gold { background: #d4af37; }
.spmt-silver { background: #cfd8dc; }
.spmt-row + .spmt-row {
  margin-top: 4px;  /* small gap between the two lines */
}


/* === Flash on refresh === */
.spmt-line.spmt-flashing .spmt-entry .spmt-text,
.spmt-line.spmt-flashing .spmt-entry {
  animation: spmtFlashBg 900ms ease-out 1;
  border-radius: 4px;
}

@keyframes spmtFlashBg {
  0%   { background-color: rgba(253, 224, 71, 0.9); }  /* tailwind amber-300 */
  100% { background-color: transparent; }
}
