#fondo-div-plantel{
    display: none; /* Inicialmente oculta */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#div-plantel{
    display: none;
    font-family: poppins;
    color: white;
    font-size: calc(0.7 * var(--x));
    position: absolute; 
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 40px;
    box-shadow: 0px 0px 40px white;
    overflow:scroll;
    width: 70%;
    left: 5%;
    top: 7svh;
    height: 92svh;
    z-index: 10;
    padding: 0px;
    margin: 0px;
    border: 0px;   
    transition: none;
    opacity: 1; 
    z-index: 1100;           
}

.li-jugadores{
    list-style-type: none;

}

.li-edad-jugadores,
.li-tipo-jugadores,
.li-baby-jugadores,
.li-puesto-jugadores,
.li-fch-jugadores,
.li-id-jugadores,
.li-altura-jugadores,
.li-nombre-jugadores,
.li-foto-jugadores,
.li-lugar-jugadores{
    display: none;
}



#ul-jugadores{
    list-style-type: none;
    /*padding: 0px;*/
    padding: 0px 40px;
}

.li-jugadores:hover{
    background-color: grey;
    opacity: 1;
}

#ul-dt{
    list-style-type: none;
}

.li-dt{
    padding: 5px 0;
    opacity: 1;    
}

.li-dt:hover{
    background-color: grey;
    opacity: 1;
}

#ul-medico{
    list-style-type: none;
}

.li-medico{
    padding: 5px 0;
    opacity: 1;    
}

.li-medico:hover{
    background-color: grey;
    opacity: 1;
}

#titulo-plantel{
    position: sticky;
    top: 0px;
    height: 15%;
    display: flex;
    background-color: rgb(83, 3, 3);
    font-size: calc(1.1 * var(--x));
    align-items: center;
    justify-content: center;
}


.li-etiquetas-plantel{
    list-style-type: none;
    text-align: right;
    align-items: end;
}

.li-datos-plantel{
    list-style-type: none;
}


/* FICHA DEL JUGADOR ----------------------------------------------------*/

#fondo-modal{
    display: none; /* Inicialmente oculta */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */    
    z-index: 1500;
}

#modal{
    display: block;
    position: absolute;
    background-color: rgb(92, 6, 6);
    background-image: url("img/escudo-resultados.png");
    background-size: cover;  /* Ajusta la imagen para que cubra todo el div */
    background-position: center; /* Centra la imagen */    
    background-repeat: no-repeat;    
    top:25%;
    left:20%;
    width: 75%;
    height: 38%;  
    border: 2px solid black;
    border-radius: 20px;       
    overflow: hidden;   /* para que se vean las puntas redondeadas*/
    box-shadow: 8px 8px 40px white;
    z-index: 1600;
}

#div-nombre-ficha{
    display: flex;
    height: 10%;
    font-family: poppins;
    font-size: 40px;
    color: white;
    text-align: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    justify-content: space-between;
}

#div-cruz-ficha{
    width: 7%;
    padding-right: 10px;
}

#cruz-ficha{
    width: 100%;
}

#nombre-jugador{
    padding-left: 20px;
}

#ficha-jugador{
    display: flex;
    width: 100%;
    height: 90%;
}

#ficha-dt{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90%;
}

#div-foto-jugador{
    width: 40%;
    height: 100%;
    padding: 15px 15px 0px 15px;
}

#foto-jugador{
    border-radius: 50%;
    object-fit: contain;
    width: 100%;
}

#div-datos-jugador{
    width: 70%;
    height: 100%;
    border: 20px;
}

.etiqueta{
    display: flex;
    background-image: linear-gradient(to right, rgba(92, 6, 6, 1), rgba(255, 255, 255, 0.5));
    /*background-color: rgba(255, 255, 255, 0.2); */
    justify-content: left;
    align-items: center;
    font-family: poppins;
    font-size: 35px;
    color: white;
    padding-left: 20px;
}

.dato-jugador{
    display: flex;
    justify-content: right;
    align-items: center;    
    font-family: poppins;
    font-size: 35px;
    color: white;    
    padding-right: 20px;
}

.li-etiqueta-dt{
    border-bottom: 1px solid white;
}

#id-dato-dt{
    position: absolute;
    background-image: linear-gradient(to right, rgba(92, 6, 6, 1), rgba(255, 255, 255, 0.5));
    font-family: poppins;
    font-size: 45px;
    color: white;    
    width: 100%;
    top: 65%;
    padding-left: 5%;
}

#etiqueta-dt{
    position: absolute;
    display: flex;
    justify-content: right;
    align-items: center;     
    font-family: poppins;
    text-align: right;
    font-size: 35px;
    color: white;    
    padding-right: 5%;
    width: 90%;
    top:75%;
}

#div-foto-dt{
    position: absolute;
    top: 15%;
    left: 30%;
    width: 40%;
}

#foto-dt{
    border-radius: 50%;
    width: 100%;
    height: 100%;
}