.blocParametres {
    display: flex;
    justify-content: center;
}
#parametres_equipes {
    border: solid 2px black;
    border-radius: 20px;
    margin-top: 30px;
    width: 99vw;
}

.blocListeParticipants {
    display: flex;
}
.blocJoueurs, .blocJoueuses {
    position: relative;
}
.blocJoueurs::after, .blocJoueuses::after {
    content: '';
    position: absolute;
    right: 0;
    top: 7%;
    height: 93%;
    width: 1px;
    background-color: black;
}

.blocJoueurs, .blocJoueuses, .blocParticipantsAbsents {
    width: 33%;
    padding: 0 16px;
}

h5 {
    text-align: center;
}
.blocVignette {
    display: flex;
    align-items: center;
}
.vignette {
    background-color: green;
    width: 200px;
    display: flex;
    justify-content: space-around;
    height: 55px;
    border: solid 1px black;
    border-radius: 15px;
    align-items: center;
    margin-top: 3px;
    padding-left: 8px;
    padding-right: 8px;
}

.listeAbsents .blocVignette .vignette {
    background-color: red;
}

.nom {
    width: 75%;
}
.icone {
    cursor: pointer;
    margin-left: 8px;
    font-weight: bold;
    border-radius: 30%;
    padding: 3px;
}
.mettreDeCote {
    color: red;
}
.mettreDeCote:hover {
    background: #fdecea;
}
.ajouterAuxParticipants {
    color: green;
}
.ajouterAuxParticipants:hover {
    background: lightgreen;
}
.blocEquipes {
    display: flex;
    gap: 16px;
    width: 99vw;
    padding: 16px;
    box-sizing: border-box;
}

.colonneEquipe {
    flex: 1;
    border: solid 2px black;
    border-radius: 20px;
    padding: 0 16px 16px 16px;
}

.sousListeFemmes {
    border-bottom: solid 1px black;
    padding-bottom: 8px;
    margin-bottom: 8px;
}