/* Rely on tezFormPage.css for overlay and header. Only minimal additions here. */

.details-actions {
  display: flex;
  gap: 8px;
}

.participant-badge {
  display: none;
  align-items: center;
  gap: 6px;
}

/* Reuse existing styles from gameresults.css for team blocks visually */
.teams-results-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tournament-info {
  margin: 8px 0 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.tournament-info .tournament-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  opacity: 0.85;
}
.tournament-info .tournament-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}
.tournament-info .tournament-chevron {
  margin-left: auto;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}
.tournament-info .tournament-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.tournament-info .tournament-meta {
  font-size: 12px;
  opacity: 0.8;
}

.tournament-info {
  cursor: pointer;
}

.tournament-info:active {
  opacity: 0.9;
}

/* Center the main title like other form pages and place subtitle under the line */
.formPage-header {
  flex-direction: column;
  align-items: center;
}

.formPage-title {
  margin: 0 auto 6px auto;
}

.formPage-subtitle {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.9;
  text-align: center;
}

.team-result .team-players-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.player-stat-row {
  display: flex;
  justify-content: space-between;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(30px, 1fr));
  gap: 8px;
  text-align: right;
}


