/* Estilos para las fotos de equipos en la tabla */
.equipo-foto {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.equipo-foto:hover {
    transform: scale(1.05);
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}

.equipo-foto-sin-imagen {
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Modal de imagen ampliada */
.imagen-ampliada-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.imagen-ampliada {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .equipo-foto {
        width: 40px;
        height: 40px;
    }
    
    .imagen-ampliada {
        max-width: 95%;
        max-height: 80%;
    }
}
