/* Pronostics & Predictions Module Styles */
.prono-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.match-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.match-versus-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.team-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-dark-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  border: 2px solid var(--glass-border);
}

.team-box.racing .team-logo {
  border-color: var(--color-cyan);
  background: var(--color-primary-dark);
}

.score-inputs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.score-input-number {
  width: 55px;
  height: 55px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: rgba(14, 23, 42, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-main);
}

.score-input-number:focus {
  border-color: var(--color-cyan);
  outline: none;
}

.vs-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rank-pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
}

.rank-1 { background: var(--color-accent-gold); color: #000; }
.rank-2 { background: #cbd5e1; color: #000; }
.rank-3 { background: #b45309; color: #fff; }
