.pdf-wrapper {
    display: flex;
    gap: 20px;
  }
  
  .pdf-item {
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .pdf-item img {
    width: 60px !important;
    height: 60px !important;
  }
  
  .pdf-actions {
    margin-top: 10px;
  }
  .pdf-actions img{
    width: 24px !important;
    height: 20px !important;
    
  }

  .view-button,
  .download-button {
    display: inline-block;
    padding: 10px;
    margin: 0 5px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .view-button {
    background-color: transparent;
    border:1px solid #57207e;
    transition: all 0.3s ease;
  }
  
  .download-button {
    background-color: transparent;
    border:1px solid #57207e;
    transition: all 0.3s ease;
  }
  
  .view-button:hover {
    transform: translatey(-4px);
   
    border:1px solid #7c2e7b;
  }
  
  .download-button:hover {
    transform: translatey(-4px);
    border:1px solid #7c2e7b;
  }
  .pdf-name{
    color:#57207e;;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    margin:10px 0;

  }
 
   