.match-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.match-titre {
  text-align: center !important;
  display: block;
  width: 100%;
}

/* BLOCS TITRES */
.match-container h2 {
  margin-top: 30px;
  font-size: 20px;
  border-left: 4px solid #0a3d91;
  padding-left: 10px;
}

.match-container h3 {
  margin-top: 20px;
  font-size: 16px;
  color: #0a3d91;
}

/* INFOS MATCH (style carte légère) */
.match-container p {
  margin: 6px 0;
  padding: 6px 10px;
  background: #f7f9fc;
  border-radius: 6px;
}

/* LISTES JOUEURS */
.match-container ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.match-container ul li {
  padding: 6px 10px;
  margin-bottom: 6px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: 0.2s;
}

.match-container ul li:hover {
  background: #f1f6ff;
}

/* LIENS JOUEURS */
.match-container ul li a {
  text-decoration: none;
  color: #0a3d91;
  font-weight: 600;
}

/* COMPOSITION ADVERSE */
.composition-adverse li {
  font-weight: 500;
}

.resume-match {
  margin-top: 30px;
  line-height: 1.6;
}

/* Tableau Page Matchs */

.matchs-title {
  text-align: center;
  margin-bottom: 25px;
}

.matchs-page {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.matchs-table {
  width: 100%;
  border-collapse: collapse;
}

.matchs-table th {
  background: #0a3d91;
  color: white;
  padding: 5px;
  text-align: center;
}

.matchs-table td {
  padding: 5px;
  border-bottom: 1px solid #ddd;
    text-align: center;
}

.matchs-table tr:hover {
  background: #f5f7ff;
}

.feuille-match {
  font-size: 20px;
  text-decoration: none;
}

.match-score {
  font-weight: 700;
}

.match-score.result-win {
  color: #2ecc71 !important;
}

.match-score.result-draw {
  color: #f1c40f !important;
}

.match-score.result-loss {
  color: #e74c3c !important;
}