/* dashboard.css */
#dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
#dash-credit-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.dash-cc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-cc-name {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-cc-type {
  font-size: 10px;
  color: var(--muted);
  background: var(--card);
  border-radius: 10px;
  padding: 1px 7px;
  display: inline-block;
}
.dash-cc-bar-wrap {
  height: 4px;
  background: var(--card);
  border-radius: 2px;
  overflow: hidden;
}
.dash-cc-bar {
  height: 100%;
  border-radius: 2px;
}
