.file-card {
  cursor: pointer;
  transition: .2s ease;
  border-radius: .75rem;
}

.file-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.file-icon {
  line-height: 1;
}

.file-card .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

