._manageViewsButton_125pk_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-interactive);
  background: var(--background-primary);
}

._manageViewsButton_125pk_1:hover {
    background: var(--background-primary) !important;
  }

._manageViewsButton_125pk_1 svg * {
      fill: var(--icon-interactive);
    }

._manageViewsButton_125pk_1 ._viewsIcon_125pk_18 {
    margin-left: 0;
    margin-right: 4px;
  }

._itemTitle_125pk_24 {
  padding: 10px 16px;
  height: auto;
  min-height: 32px;
}

._chevronWrapper_125pk_30 {
  border-radius: 100%;
  border: 1px solid var(--border-secondary-alpha);
  width: 20px;
  height: 20px;
  background: var(--background-elevated);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

._chevronWrapper_125pk_30 svg {
    fill: var(--icon-primary);
  }

._createViewOption_125pk_46 {
  padding: 6px 16px;
  box-sizing: content-box;
}
._sources_1b2px_1 {
  background: var(--content-background-color);
  display: flex;
  overflow: hidden;
  transition: background-color var(--theme-transition-time) ease-in-out;
  height: 100%;
  width: 100%;
  --focus-background-color: var(--document-list-focus-color);
}

._sourcesContainer_1b2px_11 {
  width: 100%;
  box-shadow: var(--inbox-container-drop-shadow);
  display: flex;
  flex-direction: column;
}

._header_1b2px_18 {
  display: inline-flex;
  width: 100%;
  align-items: center;
  padding: var(--s2) 26px;
  height: var(--inbox-header-height);
  font-size: var(--font-size-2xl);
  position: relative;
  border-bottom: 1px solid var(--border-tertiary-alpha);
}

._header_1b2px_18 ._isHeaderDisabled_1b2px_28 {
    opacity: 0.4;
    pointer-events: none;
  }

._header_1b2px_18 ._title_1b2px_33 {
    color: var(--inbox-header-active-tab-text-color);
    font-size: var(--font-size-lg);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }

._header_1b2px_18 ._headerRight_1b2px_43 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

._header_1b2px_18 ._headerRight_1b2px_43 input {
      margin-right: 32px;
      max-width: 289px;
    }

._header_1b2px_18 ._headerRight_1b2px_43 ._deleteBtn_1b2px_54 {
      display: flex;
      align-items: center;
      gap: 6px;
    }

._header_1b2px_18 ._headerRight_1b2px_43 ._deleteBtn_1b2px_54:not(:active):hover {
        background: var(--u-alpha-300);
      }

._listContainer_1b2px_66 {
  overflow-y: auto;
  height: 100%;
  padding: 0;
  padding-bottom: 64px;
}

._listContainer_1b2px_66 table {
    position: relative;
    display: grid;
    border-collapse: collapse;
    min-width: 100%;
    grid-template-columns:
      minmax(64px, 3%) /* checkbox */
      minmax(100px, 48%) /* name */
      minmax(100px, 8%) /* documents */
      minmax(100px, 8%) /* highlights */
      minmax(100px, 23%) /* views */
      minmax(100px, 10%) /* last updated */;

    width: 100%;
  }

._listContainer_1b2px_66 table thead,
    ._listContainer_1b2px_66 table tbody,
    ._listContainer_1b2px_66 table tr {
      display: contents;
    }

._listContainer_1b2px_66 table thead tr {
      border-bottom: 0;
    }

._listContainer_1b2px_66 table tr {
      width: 100%;
      height: 44px;
    }

._listContainer_1b2px_66 table tr td {
        border-bottom: 1px solid var(--border-tertiary-alpha);
      }

._listContainer_1b2px_66 table td {
      height: 44px;
      padding: 0 8px;
    }

._listContainer_1b2px_66 table td a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
      }

._listContainer_1b2px_66 table td a span {
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
        }

._listContainer_1b2px_66 table tbody tr {
      scroll-margin-top: 50px;
    }

._item_1b2px_130._isFocused_1b2px_131 td {
    background: var(--u-alpha-100);
    border-bottom: 1px solid var(--border-tertiary-alpha);
  }

._item_1b2px_130._isFocused_1b2px_131 td:first-child {
      position: relative;
      overflow: visible;
    }

._item_1b2px_130._isChecked_1b2px_141 td{
    background: var(--u-alpha-blue-200);
  }

._item_1b2px_130._isFocused_1b2px_131._isChecked_1b2px_141 td{
    background: var(--u-alpha-blue-300);
  }

._item_1b2px_130._isSelected_1b2px_149 td {
    background: var(--u-alpha-blue-100);
  }

._item_1b2px_130._isSelected_1b2px_149 td:hover {
      background: var(--u-alpha-blue-200) !important;
    }

._item_1b2px_130 ._tdWithCheckbox_1b2px_157 {
    min-width: 20px;
  }

._item_1b2px_130 td {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

._item_1b2px_130 ._checkboxWrapper_1b2px_171 {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 0;
  }

._item_1b2px_130 ._checkboxWrapper_1b2px_171 button,
    ._item_1b2px_130 ._checkboxWrapper_1b2px_171 input {
      height: 16px;
      width: 16px;
      min-width: 16px;
      box-sizing: border-box;
      margin: 0;
    }

._item_1b2px_130 ._name_1b2px_188 {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-primary);
    height: 100%;
    position: relative;
  }

._item_1b2px_130 ._name_1b2px_188 span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

._item_1b2px_130 ._description_1b2px_205,
  ._item_1b2px_130 ._documents_1b2px_206,
  ._item_1b2px_130 ._lastUpdated_1b2px_207 {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }

._item_1b2px_130 ._description_1b2px_205 span, ._item_1b2px_130 ._documents_1b2px_206 span, ._item_1b2px_130 ._lastUpdated_1b2px_207 span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }

._item_1b2px_130 ._documents_1b2px_206 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

._item_1b2px_130 ._views_1b2px_226 {
    display: flex;
    align-items: center;
  }

._item_1b2px_130 ._lastUpdated_1b2px_207 {
    display: flex;
    align-items: center;
  }

._checkbox_1b2px_171 {
  width: fit-content;
}

._checkbox_1b2px_171 input[type="checkbox"] {
    border-radius: 4px;
    accent-color: var(--icon-interactive);
    cursor: pointer;
  }

._checkbox_1b2px_171 input[type="checkbox"]:indeterminate {
      background: green;
    }

._loaderContainer_1b2px_251 {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 16px;
}

._loaderContainer_1b2px_251 p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: var(--text-primary);
  }

._emptyStateContainer_1b2px_265 {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  height: 208px;
}

._emptyStateContainer_1b2px_265._high_1b2px_272 {
    background: var(--u-alpha-blue-100);
  }

._emptyStateContainer_1b2px_265 ._radarWrapper_1b2px_276 {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

._mergeButton_1b2px_285 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-interactive);
  background: var(--background-primary);
  margin-right: 7px;
}

._mergeButton_1b2px_285:hover {
    background: var(--background-primary);
  }

._mergeButton_1b2px_285 svg {
    margin-right: 4px;
  }

._mergeButton_1b2px_285 svg * {
      fill: var(--icon-interactive);
    }

._deleteButton_1b2px_306 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-error);
  background: var(--background-primary);
}

._deleteButton_1b2px_306:hover {
    background: var(--background-primary);
  }

._deleteButton_1b2px_306 svg {
    margin-right: 4px;
  }

._deleteButton_1b2px_306 svg * {
      fill: var(--icon-danger);
    }

._buttonDisabled_1b2px_326 {
  opacity: .7;
  pointer-events: none;
}

._sources_1b2px_1._areSelectedItems_1b2px_331 ._navPillsContainer_1b2px_332,
  ._sources_1b2px_1._areSelectedItems_1b2px_331 ._headerRight_1b2px_43 button {
    opacity: 0.4;
    pointer-events: none;
  }

._sources_1b2px_1._areSelectedItems_1b2px_331 ._item_1b2px_130 td {
      -webkit-user-select: none;
              user-select: none;
    }

._sources_1b2px_1._areSelectedItems_1b2px_331 ._item_1b2px_130 td * {
        pointer-events: none;
      }

._hideElement_1b2px_349 {
  display: none !important;
}
