.Lista-arquivos {
  row-gap: 0 !important;

  li {
    font-size: $text-df;

    i {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background-color: $green-light;
      font-size: $text-lg;
      color: $green-dark;
      border-radius: 6px;
    }

    a {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 24px 24px 24px 0;
      border-bottom: 1px solid $gray;
      font-size: $text-df;
      font-weight: 500;
      color: $gray-title;
    }
  }

  &._adicional {
    li {
      color: #000;

      i {
        width: 18px;
        height: 18px;
        background-color: transparent;
        font-size: $title-xs;
      }

      a {
        gap: 12px;
        width: fit-content;
        padding: 6px 8px;
        border-bottom: none;
      }
    }
  }
}

._dark-mode {
  .Lista-arquivos {
    li {
      i {
        background-color: #42cf7b3d;
      }

      a {
        border-bottom: 1px solid #fff;
        color: #fff;
      }
    }

    &._adicional {
      li {
        a {
          border-bottom: none;
        }

        i {
          color: #fff;
        }
      }
    }
  }
}
