.account-balances {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.account-points {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 10px;
  border: 1px solid rgb(34 211 238 / 25%);
  border-radius: 8px;
  background: rgb(34 211 238 / 8%);
  color: #67e8f9;
  white-space: nowrap;
}

.account-points--value {
  border-color: rgb(251 191 36 / 28%);
  background: rgb(251 191 36 / 8%);
  color: #fcd34d;
}

.account-points-label {
  font-size: 11px;
  font-weight: 600;
}

.account-points-amount {
  font-size: 15px;
  font-weight: 800;
}

.account-balances--compact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
}

.account-balances--compact .account-points {
  padding: 3px 9px;
}
