body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
  }
  
  #fileList {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  li {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.5s ease-in-out;
    margin-bottom: 10px;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  .sent{
    width: 80%;
  }