table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background: #fff; 
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-in-out;
}

/* Estilo para las celdas */
th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

/* Encabezados de la tabla */
th {
    background: #8b2238;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

/* Alternar colores en las filas */
tr:nth-child(even) {
    background: #f8f9fa;
}

/* Efecto hover en filas */
tr:hover {
    background: #f2f2f2;
    transition: background 0.3s ease-in-out;
}

/* Estilos para imágenes dentro de la tabla */
td img {
    width: 100%;
 
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
