.favorite-player-btn,
.history-chip-favorite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .35);
  background: rgba(255, 255, 255, .78);
  color: #94a3b8;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
}

.favorite-player-btn:hover,
.history-chip-favorite:hover {
  color: #d97706;
  border-color: rgba(245, 158, 11, .45);
  background: rgba(254, 243, 199, .78);
}

.favorite-player-btn.is-favorite,
.history-chip-favorite.is-favorite {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, .55);
  background: rgba(254, 243, 199, .92);
}

.favorite-player-btn:disabled,
.history-chip-favorite:disabled {
  opacity: .55;
  cursor: wait;
}

.favorite-player-btn:active,
.history-chip-favorite:active {
  transform: scale(.96);
}

.player-name-favorite {
  flex: 0 0 auto;
  width: auto;
  min-width: 112px;
  height: 34px;
  gap: 6px;
  padding: 0 12px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.player-name-favorite i {
  font-size: 16px;
}

.history-chip-favorite {
  width: 24px;
  height: 24px;
  font-size: 14px;
  padding: 0;
}
