

.coach-page {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
.coach-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.coach-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.coach-name {
  font-size: 28px;
  margin: 0;
}

.coach-periode {
  color: #555;
}

/* STATS */
.coach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stat-box {
  background: #f5f7fa;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.stat-number {
  font-size: 26px;
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

/* COULEURS */
.win { border-top: 4px solid #2ecc71; }
.draw { border-top: 4px solid #f1c40f; }
.loss { border-top: 4px solid 
	#e74c3c; }
	
/* Tableau Page Selectionneurs */
	
.selectionneurs-page {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.selectionneurs-title {
  text-align: center;
  margin-bottom: 25px;
}

.selectionneurs-table {
  width: 100%;
  border-collapse: collapse;
}

.selectionneurs-table th {
  background: #0a3d91;
  color: white;
  padding: 5px;
  text-align: center;

}

.selectionneurs-table td {
  padding: 5px;
  border-bottom: 1px solid #ddd;
    text-align: center;

}

.selectionneurs-table tr:hover {
  background: #f5f7ff;
}

/* couleurs résultats */
.win { color: #2ecc71; font-weight: bold; }
.draw { color: #f1c40f; }
.loss { color: #e74c3c; }

.pct {
  font-weight: bold;
  text-align: center;
}

.coach-bio {
  margin-top: 30px;
  line-height: 1.7;
  background: #f7f9fc;
  padding: 20px;
  border-radius: 10px;
}

.coach-bio h2 {
  margin-top: 0;
}