/* Add this CSS to your component or global styles */
.ant-upload-list-item-thumbnail img {
  margin-top: 2%;
  width: 50px; /* Set the desired width for the thumbnail */
  height: auto; /* Maintain the aspect ratio */
}

.ant-upload-list-item-thumbnail {
  margin-right: 10px; /* Space between thumbnail and filename */
}

.ant-upload-list-item-name {
  flex-grow: 1; /* Allow the filename to grow and take up space */
}

.ant-upload-list-item-card-actions-btn {
  margin-left: 10px; /* Space between filename and remove button */
}

.table-hover-cell {
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.table-hover-cell:hover {
  color: blue; /* Change the color to blue on hover */
}
