.poker-card {
  display: inline-flex;
  align-items: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.82em;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  border: 1.5px solid;
  line-height: 1.3;
  white-space: nowrap;
  vertical-align: middle;
  margin: 0 1px;
  letter-spacing: 0;
}
.poker-card.red {
  color: #c0392b;
  background: #fff8f8;
  border-color: #e8b0aa;
}
.poker-card.black {
  color: #1a1a1a;
  background: #f8f8f8;
  border-color: #bbb;
}
.poker-hand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
