.classementComponent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.classementComponent h2{
    font-size: 32px;
}

.content {
    display: flex;
    color: antiquewhite;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'SUSE';
    flex-wrap: wrap;
}

.tableContainer {
    width: 470px;
    height: 560px;
    background-color: #353535;
    border-radius: 21px;
    padding: 20px 50px 50px 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

.tableContainer::-webkit-scrollbar {
    display: none; /* Masque la scrollbar */
}

.tableContentContainer {
    width: 100%;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid antiquewhite;
    height: 55px;
}

.rowChild {
    padding: 10px;
    /* Pour mieux visualiser les enfants */
}

.left {
    margin-right: auto;
    /* Pousse les autres éléments à droite */
}

.right {
    margin-left: 10px;
    /* Ajoute un espace entre les div de droite */
}

img{
    width: 30px;
}

.points{
    width: 80px;
    text-align: right;
}

.firstRow{
    transform: scale(1.09);
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

#SelecteDiffMastermind {
    position: relative;
    margin-bottom: 1rem;
}

#SelecteDiffMastermind select {
    appearance: none; /* Supprime le style par défaut */
    width: 100%;
    padding: 10px;
    font-size: 32px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    background: #242423;
    color: antiquewhite;
    cursor: pointer;
    outline: none;
    background-image: none; /* On masque l'image SVG par défaut */
}

#SelecteDiffMastermind select:focus {
    border-color: #343434;
}

/* Flèche personnalisée */
#SelecteDiffMastermind .arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    /* La flèche est faite avec les border */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid antiquewhite; /* Couleur de la flèche */
    transform: rotate(-90deg);
    transition: transform 0.3s ease, border-top-color 0.3s ease;
    border-top-color: antiquewhite;
}

/* Changement de couleur et rotation lors de l'ouverture */
#SelecteDiffMastermind select:focus + .arrow,
#SelecteDiffMastermind select:hover + .arrow {
    transform: translateY(-25%) rotate(0deg);
}

.invisible{display: none;}

@media only screen and (max-width: 768px) {
    .content{
        flex-direction: column;
    }

    .tableContainer {
        width: 300px;
        height: 560px;
        background-color: #353535;
        border-radius: 21px;
        padding: 7px 30px 18px 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
        overflow: scroll;
    }

    .rowChild.right.clm{
        width: 100px;
        text-align: right;
    }
}