.file-transfer {
  &__list {
    margin: 0;
    padding: 0;
    list-style: none;

    &-item {
      padding: 8px 8px 8px 16px;
      border-bottom: 1px solid;

      &:last-child {
        border-bottom: none;
      }
    }
  }

  &__header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & > button {
      margin-left: 8px;
    }
  }

  &__info {
    margin-right: 8px;
    display: flex;
    flex-direction: column;
  }

  &__status {
    display: flex;
    justify-content: space-between;
  }

  &__tooltip {
    text-decoration: underline dotted;
  }

  &__progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &__progress {
    width: 100%;
    margin-right: 8px;
  }
}
