:global {
  .table-page-search-bar {
    width: calc(100vw - 250px);
    min-width: 718px;
  }

  .table-page-header-buttons {
    margin: 10px 0;
    padding: 0;
    button {
      margin-right: 10px;
    }
  }

  .table-page-header-tabs .ant-tabs-top-bar {
    margin-bottom: 0;
  }

  .table-page-table-wrapper {
    margin-top: 15px;
    padding: 0;
  }
  .table-page-table {
    &.non-selectable {
      .ant-table-selection-column {
        .ant-checkbox-wrapper {
          opacity: 0;
          pointer-events: none;
        }
      }
    }
  }

  .table-row-operates {
    > button,
    > a {
      display: inline-block;
      position: relative;
      margin-right: 16px;
      &::after {
        position: absolute;
        top: 50%;
        right: -8px;
        width: 1px;
        height: 12px;
        background-color: rgba(#000, 0.1);
        transform: translateY(-50%);
        content: '';
      }
      &:nth-last-of-type(1) {
        margin-right: 0;
        &::after {
          content: none;
        }
      }
    }
  }
}
