.signal-main-panel.is-my-signals .signal-results-head {
  min-height: 54px;
  padding-bottom: 8px;
}

.signal-main-panel.is-my-signals .signal-results-head > div:first-child {
  display: grid;
  gap: 2px;
}

.my-signal-status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 2px 0;
}

.my-signal-status-tabs button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: #475467;
  font-size: 12px;
  font-weight: 900;
}

.my-signal-status-tabs button strong {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f2f4f7;
  color: #344054;
  font-size: 11px;
}

.my-signal-status-tabs button.active,
.my-signal-status-tabs button:hover {
  border-color: #ffb27a;
  background: #fff7f1;
  color: var(--brand);
}

.my-signal-status-tabs button.active strong,
.my-signal-status-tabs button:hover strong {
  background: var(--brand);
  color: #fff;
}

.signal-table-shell.is-my-signals {
  border-radius: 8px;
}

.my-signals-table {
  min-width: 1180px;
  font-size: 13px;
}

.my-signals-table th,
.my-signals-table td {
  padding: 13px 14px;
  vertical-align: middle;
}

.my-signals-table tbody tr {
  cursor: default;
}

.my-signals-table tbody tr[data-open-signal] {
  cursor: pointer;
}

.my-signals-table tbody tr:hover {
  background: #fbfcff;
}

.my-signal-name {
  min-width: 250px;
}

.my-signal-description {
  max-width: 310px;
  margin-top: 6px;
  color: #667085;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-signal-status-cell {
  min-width: 150px;
  display: grid;
  gap: 6px;
}

.my-signal-status-cell small {
  max-width: 220px;
  color: #667085;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.45;
}

.my-status-badge {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.my-status-pending,
.my-status-pending-profile,
.my-status-review {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.my-status-approved,
.my-status-approved-pending,
.my-status-live,
.my-status-live-pending {
  border-color: #abefc6;
  background: #ecfdf3;
  color: #067647;
}

.my-status-paused {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #175cd3;
}

.my-status-action {
  border-color: #fecaca;
  background: #fff1f0;
  color: #b42318;
}

.my-status-deleted {
  border-color: #d0d5dd;
  background: #f2f4f7;
  color: #475467;
}

.my-signal-server,
.my-signal-dates,
.my-signal-visibility {
  min-width: 130px;
  display: grid;
  gap: 4px;
}

.my-signal-server strong,
.my-signal-visibility strong {
  color: #101828;
  font-size: 13px;
  font-weight: 950;
}

.my-signal-server span,
.my-signal-visibility span,
.my-signal-dates span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.my-signal-dates em {
  display: inline-block;
  min-width: 34px;
  margin-right: 6px;
  color: #98a2b3;
  font-style: normal;
  font-weight: 900;
}

.my-signal-data-note {
  min-width: 220px;
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border: 1px dashed #d9e2ef;
  border-radius: 8px;
  background: #fbfcff;
}

.my-signal-data-note strong {
  color: #344054;
  font-size: 13px;
  font-weight: 950;
}

.my-signal-data-note span {
  color: #667085;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.45;
}

.my-signal-metrics {
  min-width: 260px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.my-signal-metrics span {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.my-signal-metrics em {
  color: #667085;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.my-signal-metrics strong {
  color: #101828;
  font-size: 14px;
  font-weight: 950;
}

.my-signal-action,
.my-signal-action-muted {
  min-width: 74px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.my-signal-action-muted {
  border: 1px solid #e4e7ec;
  background: #f8fafc;
  color: #667085;
}

.my-signal-row-action {
  background: #fff8f6;
}

.my-signal-row-deleted {
  opacity: .78;
}

.my-signal-mobile-card .my-mobile-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.my-signal-mobile-card .my-mobile-status strong {
  color: #344054;
  font-size: 12px;
  font-weight: 950;
}

.my-signal-mobile-card p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.55;
}

.my-mobile-data .my-signal-data-note {
  min-width: 0;
}

.my-mobile-data .my-signal-metrics {
  min-width: 0;
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .my-signal-status-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-signal-status-tabs button {
    justify-content: space-between;
    width: 100%;
  }
}
