/* jogadores */

.xs-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.xs-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f3f5;
  border: 1px solid #e5e7eb;
}

.xs-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xs-number {
  width: 22px;
  text-align: right;
  font-weight: 700;
  font-size: 13px;
  color: #e10600;
}

.xs-name {
  font-size: 14px;
  line-height: 1.2;
}





/* ações  */

.xs-player.is-sub {
  opacity: 0.55;
}

.xs-player.is-sub img {
  filter: grayscale(100%);
}


.xs-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.xs-status.yellow { background: #facc15; }
.xs-status.red { background: #dc2626; }

.card.team-winner {
  border-left: 4px solid #e10600;
}

.xs-subtitle {
  position: sticky;
  top: 0;
  background: #fff;
}


.xs-player.is-sub {
  opacity: 0.5;
}

.xs-player.is-sub img {
  filter: grayscale(100%);
}

.xs-player-events {
    display: flex;
    gap: 6px;
    align-items: center;
}

.xs-event {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.xs-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.xs-card.yellow rect { fill: #f1c40f; }
.xs-card.red rect { fill: #e74c3c; }

.xs-minute {
    font-size: 10px;
    line-height: 1;
}
