.PersonalAccessTokenPage {
  &__Header {
    display: flex;

    &__CopyText {
      align-items: flex-start;
      flex-grow: 1;
    }

    &__CreateButton {
      align-items: flex-end;
      align-self: center;
      margin-left: 15px;
    }
  }

  &__NoTokensMessage {
    margin: 40px;
    text-align: center;
    font-size: 18px;
  }

  &__CardList {
    margin: 20px auto;
    max-width: 800px;

    &__LoadMore {
      display: flex;
      justify-content: flex-end;

      &__Button {
        margin: 10px;
      }
    }
  }
}

.PersonalAccessTokenCard {
  // adapted from SRC-userCardMediumUp
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(221, 221, 223);
  justify-content: space-between;
  margin: 7px;
  height: 110px;
  width: 100%;
  width: -webkit-fill-available; // for chrome
  width: -moz-available; // for firefox
  padding-left: 25px;

  .SRC-cardContent {
    flex-grow: 1;
    .SRC-eqHeightRow {
      margin-bottom: 5px;
    }
  }

  &__ScopeName {
    margin-inline-start: 3px;
    margin-inline-end: 3px;
  }

  &__ScopeName:hover {
    cursor: default;
  }

  &__DeleteButton {
    align-self: flex-start;
    margin: 10px;
  }
}

.AccessTokenModal {
  margin: 20px 0px;
  .checkbox {
    margin-top: 5px;
    margin-bottom: 15px;
    span span {
      font-weight: bold;
    }
  }
  &__ScopeDescription {
    color: #8e8e8e !important;
  }
  &__CopyToClipboardContainer {
    text-align: center;
  }

  &__TokenNameInput {
    width: 325px;
  }
}
