.equipe-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.joueur {
    background: white;
    border-left: 5px solid var(--jaune);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 220px;
    text-align: center;
}

.joueur-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid var(--gris);
}

.joueur .numero {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--gris-fonce);
}

.joueur .nom {
    font-size: 0.95rem;
}

.table-membres {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
    background: white;
}

.table-membres thead {
    background-color: var(--gris);
}

.table-membres th,
.table-membres td {
    padding: 10px;
    border: 1px solid var(--gris);
    text-align: left;
}

.table-membres tr:nth-child(even) {
    background-color: var(--gris-clair);
}