.publish-button {
  width: 80px;
  /* min-width: 150px; */
  /* max-width: 200px; */
}

.nav-tabs .nav-link.active {
  background-color: #007bff;
  /* or any color */
  color: white;
  border-color: #dee2e6 #dee2e6 #fff;
}

.tekins-player {
  --match-background: rgba(0, 0, 0, 0.05);
  --match-horizontal-padding: 10px;
  --participant-image-size: 2.8em;
  --win-color: #50b649;
  --loss-color: #e61a1a;
  --hint-color: #a7a7a7;
  --text-size: 1em;
}
table.table > tbody > tr.tekins-player.odd-match > * {
  background-color: var(--match-background) !important;
}

.tekins-player .participant {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px var(--match-horizontal-padding);
}

.tekins-player .participant .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
}

.tekins-player .participant .name > img {
  width: var(--participant-image-size);
  height: var(--participant-image-size);
  margin-right: 4px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  vertical-align: middle;
  position: relative;
  bottom: 1px;
}

.tekins-player .participant .name > span {
  color: var(--hint-color);
  font-size: 0.9em;
  font-weight: initial;
}

.tekins-player .participant .result {
  margin-left: 10px;
  width: 10%;
  text-align: center;
  font-size: calc(var(--text-size) + 5px);
  font-weight: bold;
}

.tekins-player .participant.win .name {
  font-weight: bold;
}

.tekins-player .participant.win .result {
  color: var(--win-color);
}

.tekins-player .participant.loss .result {
  color: var(--loss-color);
}
