@use '../abstracts/variables' as SRC;
@use '../abstracts/mixins' as SRCMixins;

.FavoritesPage {
  .searchInputWithIcon {
    padding-bottom: 30px;
    max-width: 800px;
  }
}

.FavoritesTable {
  @include SRCMixins.sortable-table();
  table {
    color: SRC.$text-color-dark;

  }
  thead:first-child > tr:first-child {
     > th:first-child { // favorite star header
      border-right: none;
    }
    > th:nth-child(2) { // column header to the right of fav
      border-left: none;
    }
  }

  tbody > tr {
    > td:first-child { // favorite star header
     width: 50px;
   }
   > td:nth-child(3) svg {
     color: #909090; // SWC-5709: entity type icon color
   }
 }
}
