.estado-jugadores {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
}

.estado-jugadores .jugador-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #ffffff;
    transition: transform 0.2s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.estado-jugadores .jugador-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.estado-jugadores .jugador-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.estado-jugadores .escudo-equipo {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.estado-jugadores .imagen-equipo {
    width: 100%;
    height: 100%;
}

.estado-jugadores .imagen-jugador {
    display: flex;
    align-items: center;
    gap: 5px;
}

.estado-jugadores .imagen-jugador img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ddd;
    object-fit: cover;
	background: #ececec no-repeat center bottom;
}

.estado-jugadores .nombre-jugador .nombre {
    margin-top: 2px;
    font-size: .825rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    font-weight: 600;
	text-shadow: none;
}

.estado-jugadores .nombre-jugador .info {
    color: #333;
    text-shadow: none;
    font-weight: normal;
    font-size: 10px;
    text-align: left;
    line-height: 1.1;
    max-width: 160px;
    overflow: hidden;
    white-space: normal;
}

.estado-jugadores .nombre-jugador .vuelta {
    color: #ff4b44;
	margin-top:1px;
    text-shadow: none;
    font-weight: normal;
    font-size: 9px;
    text-align: left;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    white-space: normal;
}

/* Ajustes responsivos */
@media (max-width: 782px) {
    .estado-jugadores .jugador-item {
        width: 100%;
    }

    .estado-jugadores .imagen-jugador {
        width: 50px;
        height: 50px;
    }

    .estado-jugadores .escudo-equipo {
        width: 25px;
        height: 25px;
    }

    .estado-jugadores .nombre-jugador {
        font-size: 0.85rem;
    }
}

.jugador-item.injured::after {
    content: "";
    display: inline-block;
    background-image: url("https://cdn.analisisfantasy.com/imagenes/cruz-roja.webp");
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.jugador-item.doubt::after {
    content: "";
    display: inline-block;
    background-image: url("https://cdn.analisisfantasy.com/imagenes/duda.webp");
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.jugador-item.sanctioned::after {
    content: "";
    display: inline-block;
    background-image: url("https://cdn.analisisfantasy.com/imagenes/tarjeta-roja.webp");
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    vertical-align: middle;
}
