.pdf-wrapper {
    display: flex;
    gap: 20px;
  }
  
  .pdf-item {
    text-align: center;
   
    padding: 20px;
    
  }
  
  .pdf-item img {
    width: 60px;
    height: 60px;
  }
  
  .pdf-actions {
    margin-top: 10px;
  }
  
  .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 img,
  .download-button img {
    width: 40px;
    height: 40px;
  }
  .view-button {
    background-color: white;
    border:1px solid #efcf85;
    color:#efcf85;
        transition: all 0.3s ease;
  }
  
  .download-button {
   background-color: white;
    border:1px solid #efcf85;
    color:#efcf85;
        transition: all 0.3s ease;
  }
  
  .view-button:hover {
        border:1px solid #a97e63;
      transform: translatey(-4px);
  }
  
  .download-button:hover {
        border:1px solid #a97e63;
      transform: translatey(-4px);
  }
  .pdf-name{
    color:#efcf85;
    font-size: 16px;
    margin:10px 0;
  }
 .pdf-name:hover{
      color:#a97e63;

 }