.elabs-cards {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}

.elabs-content .tabs-block {
  margin-bottom: 16px;
}

.elabs-content .label-input {
  margin-bottom: 16px;
}

.elabs-content .tabs-content {
  margin-top: 0;
}
.elabs-cards .card {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.elabs-cards .card h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.elabs-cards .card h2 .badge {
  color: white;
  font-weight: 500;
  background: var(--surface-brand-background, #2c9d62);
  margin-bottom: 0;
  margin-right: 0;
}

.elabs-cards .card p {
  color: #3b3b3b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  flex: 1;
}

.elabs-page .btn-white {
  border-radius: var(--border-radius-sm, 8px);
  border: 1px solid var(--surface-primary-border, #e3e3e3);
  background: var(--surface-primary-background, #fff);
  box-shadow:
    0px 0px 2px 0px rgba(8, 40, 13, 0.02),
    0px 2px 4px 0px rgba(8, 40, 13, 0.05);
  width: max-content;
  color: #1c1c1c;
  margin-bottom: 0;
  margin-top: 6px;
}

.new-table .table-body {
  border: 1px solid #e3e3e3;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.new-table .table-header {
  background: #f4f4f4;
}

.new-table .table-row {
  text-decoration: none;
  transition: 0.2s;
}

.new-table .table-row:hover {
  background: #f4f4f4;
}

.new-table .table-row .table-cell {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #3b3b3b;
  flex: 1;
}

.new-table .table-header .table-cell {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #1c1c1c;
  flex: 1;
}

.new-table .table-row {
  display: flex;
}

.new-table .table-row:not(.table-header) {
  border-top: 1px solid var(--surface-primary-border, #e3e3e3);
}

.new-table .table-row .table-cell {
  padding: 12px;
  min-width: 160px;
  display: flex;
  align-items: center;
}

.new-table .table-row .table-cell:first-child {
  flex: 1;
  color: #1c1c1c;
}

.new-table .table-company .table-row .table-cell:first-child {
  min-width: 60%;
}

.new-table .table-row .table-cell:nth-child(2) {
  max-width: 320px;
  width: 100%;
}

.new-table .table-footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-table .table-footer span {
  color: #777;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.new-table .table-footer .btn-white {
  margin-top: 0;
}

.elabs-statistics {
  margin-top: 64px;
}

.elabs-statistics .tabs-block {
  margin-top: 4px;
}

.elabs-statistics .title {
  font-size: 28px;
  color: #1c1c1c;
  font-weight: 600;
  line-height: 36px;
}

.table-body .count {
  border-radius: 100%;
  border: 1px solid var(--surface-primary-border, #e3e3e3);
  background: var(--surface-primary-background, #fff);
  padding: 2px 4px;
  min-width: 24px;
  text-align: center;
  font-weight: 500;
}

.tabs-content .label-input select {
  max-width: 215px;
  border-radius: var(--border-radius-sm, 8px);
  border: 1px solid var(--surface-primary-border, #e3e3e3);
  background-color: var(--surface-secondary-background, #f4f4f4);
  background-image: url('../img/arrow-down.svg');
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .main-inner-top h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .elabs-cards {
    flex-direction: column;
  }

  .new-table .table-body {
    overflow: auto;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }

  .new-table .table-body::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  .new-table .table-body {
    background: #f4f4f4;
  }

  .new-table .table-row:not(.table-header) .table-cell {
    background: white;
  }

  .elabs-statistics {
    margin-top: 32px;
  }
}
