#workspaceShell {
  --suite-c-sky: #35b8ff;
  --suite-c-blue: #087cf0;
  --suite-c-blue-deep: #1454c8;
  --suite-c-navy: #10283f;
  --suite-c-navy-soft: #214863;
  --suite-c-muted: #647a90;
  --suite-c-line: #c2dceb;
  --suite-c-line-soft: #dcebf4;
  --suite-c-ice: #eaf7ff;
  --suite-c-soft: #f5fbff;
  --suite-c-white: #ffffff;
  --suite-c-yellow: #ffda57;
  --suite-c-yellow-soft: #fff8d9;
  --suite-c-coral: #ff7358;
  --suite-c-coral-soft: #fff0ed;
}

#workspaceShell .suite-c-page {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  color: var(--suite-c-navy);
  background: var(--suite-c-soft);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

#workspaceShell .suite-c-page.hidden {
  display: none !important;
}

#workspaceShell .suite-c-page,
#workspaceShell .suite-c-page *,
#workspaceShell .suite-c-page *::before,
#workspaceShell .suite-c-page *::after {
  box-sizing: border-box;
}

#workspaceShell .suite-c-main {
  width: min(100%, 1600px);
  min-width: 0;
  min-height: 100%;
  margin: 0 auto;
  padding: 26px 28px 72px;
}

#workspaceShell .suite-c-page-head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  min-width: 0;
  margin: 0 0 22px;
}

#workspaceShell .suite-c-page-copy {
  min-width: 0;
}

#workspaceShell .suite-c-eyebrow {
  margin: 0 0 9px;
  color: var(--suite-c-blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .13em;
}

#workspaceShell .suite-c-page-copy h2 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 34px;
  line-height: 1.13;
  font-weight: 860;
  letter-spacing: -.045em;
}

#workspaceShell .suite-c-page-copy > p:last-child {
  margin: 8px 0 0;
  color: var(--suite-c-muted);
  font-size: 14px;
  line-height: 1.65;
}

#workspaceShell .suite-c-head-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  margin-left: auto;
}

#workspaceShell .suite-c-button,
#workspaceShell .suite-c-icon-button {
  appearance: none;
  border: 1px solid #a9cee4;
  background: var(--suite-c-white);
  color: var(--suite-c-navy-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  box-shadow: none;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

#workspaceShell .suite-c-button {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  white-space: nowrap;
}

#workspaceShell .suite-c-icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
}

#workspaceShell .suite-c-button:hover,
#workspaceShell .suite-c-icon-button:hover {
  border-color: var(--suite-c-blue);
  color: var(--suite-c-blue);
  transform: translateY(-1px);
}

#workspaceShell .suite-c-button:focus-visible,
#workspaceShell .suite-c-icon-button:focus-visible,
#workspaceShell .suite-c-page button:focus-visible,
#workspaceShell .suite-c-page a:focus-visible,
#workspaceShell .suite-c-page input:focus-visible,
#workspaceShell .suite-c-page select:focus-visible,
#workspaceShell .suite-c-page textarea:focus-visible {
  outline: 3px solid rgba(53, 184, 255, .25);
  outline-offset: 2px;
}

#workspaceShell .suite-c-page input,
#workspaceShell .suite-c-page select,
#workspaceShell .suite-c-page textarea {
  accent-color: var(--suite-c-blue);
}

#workspaceShell .suite-c-button:disabled,
#workspaceShell .suite-c-icon-button:disabled {
  cursor: not-allowed;
  opacity: .5;
  transform: none;
}

#workspaceShell .suite-c-button svg,
#workspaceShell .suite-c-icon-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

#workspaceShell .suite-c-primary,
#workspaceShell .suite-c-button.active {
  border-color: var(--suite-c-blue);
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
  box-shadow: 0 5px 0 #c4eaff;
}

#workspaceShell .suite-c-primary:hover,
#workspaceShell .suite-c-button.active:hover {
  border-color: var(--suite-c-blue-deep);
  background: var(--suite-c-blue-deep);
  color: var(--suite-c-white);
}

#workspaceShell .suite-c-inverse {
  border-color: var(--suite-c-white);
  background: var(--suite-c-white);
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-full {
  width: 100%;
}

#workspaceShell .suite-c-section-gap {
  margin-top: 14px;
}

#workspaceShell .suite-c-card {
  min-width: 0;
  border: 1px solid var(--suite-c-line);
  border-radius: 12px;
  background: var(--suite-c-white);
  overflow: hidden;
}

#workspaceShell .suite-c-card-head {
  min-height: 64px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--suite-c-line-soft);
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-card-head > div {
  min-width: 0;
}

#workspaceShell .suite-c-card-head h3 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 820;
}

#workspaceShell .suite-c-card-head p {
  margin: 4px 0 0;
  color: var(--suite-c-muted);
  font-size: 13px;
  line-height: 1.5;
}

#workspaceShell .suite-c-card-head > :last-child:not(:first-child) {
  margin-left: auto;
}

#workspaceShell .suite-c-card-head > svg {
  width: 21px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-card-body {
  min-width: 0;
  padding: 18px;
}

#workspaceShell .suite-c-status,
#workspaceShell .suite-c-page .badge,
#workspaceShell .suite-c-page .history-status {
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #e2f4ff;
  color: #176da8;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 780;
  white-space: nowrap;
}

#workspaceShell .suite-c-status svg,
#workspaceShell .suite-c-page .badge svg {
  width: 14px;
  height: 14px;
}

#workspaceShell .suite-c-page .badge.good,
#workspaceShell .suite-c-page .history-status.done {
  background: #e2f4ff;
  color: #176da8;
}
#workspaceShell .suite-c-page .history-status.done::before { background: var(--suite-c-blue) !important; }

#workspaceShell .suite-c-page .badge.warn,
#workspaceShell .suite-c-page .history-status.running,
#workspaceShell .suite-c-page .history-status.queued {
  background: var(--suite-c-yellow-soft);
  color: #826500;
}

#workspaceShell .suite-c-page .badge.bad,
#workspaceShell .suite-c-page .history-status.error,
#workspaceShell .suite-c-page .history-status.cancelled,
#workspaceShell .suite-c-page .history-status.timeout {
  background: var(--suite-c-coral-soft);
  color: #b44c3b;
}

#workspaceShell .suite-c-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

#workspaceShell .suite-c-metric {
  min-width: 0;
  min-height: 128px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--suite-c-line);
  border-radius: 11px;
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-metric > span,
#workspaceShell .suite-c-metric > strong,
#workspaceShell .suite-c-metric > small {
  display: block;
}

#workspaceShell .suite-c-metric > span {
  color: var(--suite-c-muted);
  font-size: 13px;
  line-height: 1.4;
}

#workspaceShell .suite-c-metric > strong {
  margin-top: 11px;
  color: var(--suite-c-navy);
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

#workspaceShell .suite-c-metric > small {
  margin-top: auto;
  padding-top: 8px;
  color: #758b9d;
  font-size: 12px;
  line-height: 1.45;
}

#workspaceShell .suite-c-metric-accent {
  border-color: #82c8f1;
  background: var(--suite-c-ice);
}

#workspaceShell .suite-c-progress {
  height: 7px;
  min-width: 0;
  overflow: hidden;
  border-radius: 999px;
  background: #d8eaf4;
}

#workspaceShell .suite-c-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--suite-c-sky), var(--suite-c-blue));
  transition: width .24s ease;
}

#workspaceShell .suite-c-notice {
  min-width: 0;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #a9d2e8;
  border-radius: 9px;
  background: #f2faff;
  color: #476a81;
  font-size: 13px;
  line-height: 1.55;
}

#workspaceShell .suite-c-notice > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-notice > div {
  min-width: 0;
  flex: 1;
}

#workspaceShell .suite-c-notice strong,
#workspaceShell .suite-c-notice span {
  display: block;
}

#workspaceShell .suite-c-notice strong {
  color: var(--suite-c-navy);
  font-size: 14px;
}

#workspaceShell .suite-c-notice span {
  margin-top: 3px;
}

#workspaceShell .suite-c-notice-warning {
  border-color: #efd68b;
  background: var(--suite-c-yellow-soft);
  color: #735f16;
}

#workspaceShell .suite-c-notice-warning > svg {
  color: #a47c00;
}

#workspaceShell .suite-c-field {
  min-width: 0;
  display: block;
}

#workspaceShell .suite-c-field > span {
  display: block;
  margin: 0 0 7px;
  color: #49697f;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 760;
}

#workspaceShell .suite-c-field input,
#workspaceShell .suite-c-field select,
#workspaceShell .suite-c-record-toolbar select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #acd0e4;
  border-radius: 8px;
  outline: 0;
  background: var(--suite-c-white);
  color: var(--suite-c-navy);
  box-shadow: none;
  font: inherit;
  font-size: 14px;
}

#workspaceShell .suite-c-field input::placeholder,
#workspaceShell .suite-c-search-control input::placeholder {
  color: #8b9dac;
}

#workspaceShell .suite-c-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

#workspaceShell .suite-c-form-grid-four {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

#workspaceShell .suite-c-wide {
  grid-column: 1 / -1;
}

#workspaceShell .suite-c-form-stack {
  display: grid;
  gap: 14px;
}

#workspaceShell .suite-c-form-action {
  align-self: end;
  min-height: 44px;
}

#workspaceShell .suite-c-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: auto;
  overscroll-behavior: contain;
}

#workspaceShell .suite-c-table-scroll-medium {
  max-height: 390px;
}

#workspaceShell .suite-c-table-scroll-tall {
  max-height: 590px;
}

#workspaceShell .suite-c-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
  color: var(--suite-c-navy);
}

#workspaceShell .suite-c-table th {
  padding: 12px 14px;
  border-bottom: 1px solid #cfe2ed;
  background: #f7fbfe;
  color: #61798c;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 790;
  text-align: left;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

#workspaceShell .suite-c-table td {
  min-width: 0;
  padding: 14px;
  border-bottom: 1px solid #e0ecf3;
  color: #294b63;
  font-size: 13px;
  line-height: 1.5;
  vertical-align: middle;
}

#workspaceShell .suite-c-table tbody tr:last-child td {
  border-bottom: 0;
}

#workspaceShell .suite-c-table tbody tr:hover td {
  background: #f8fcff;
}

#workspaceShell .suite-c-table td strong,
#workspaceShell .suite-c-table td .lead-cell-sub {
  display: block;
}

#workspaceShell .suite-c-table td strong {
  color: var(--suite-c-navy);
  font-size: 13px;
}

#workspaceShell .suite-c-table td .lead-cell-sub,
#workspaceShell .suite-c-table td .muted {
  margin-top: 4px;
  color: #758b9d;
  font-size: 12px;
}

#workspaceShell .suite-c-table .icon-button,
#workspaceShell .suite-c-table button.icon-button,
#workspaceShell .suite-c-results .toolbar button,
#workspaceShell .suite-c-results button.primary,
#workspaceShell .suite-c-results button.danger,
#workspaceShell #billingOrderTable button {
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #afd0e3;
  border-radius: 8px;
  background: var(--suite-c-white);
  color: var(--suite-c-navy-soft);
  font: inherit;
  font-size: 12px;
  font-weight: 740;
  box-shadow: none;
  cursor: pointer;
}

#workspaceShell .suite-c-table .icon-button svg,
#workspaceShell .suite-c-results button svg,
#workspaceShell #billingOrderTable button svg {
  width: 15px;
  height: 15px;
}

#workspaceShell .suite-c-table .icon-button.danger,
#workspaceShell .suite-c-results button.danger {
  border-color: #efc2ba;
  color: #b94d3d;
}

#workspaceShell .suite-c-table .toolbar,
#workspaceShell .suite-c-results .toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
}

#workspaceShell .suite-c-page .history-empty,
#workspaceShell .suite-c-page .team-empty,
#workspaceShell .suite-c-page .empty-state {
  min-height: 86px;
  padding: 18px;
  display: grid;
  place-items: center;
  color: var(--suite-c-muted);
  font-size: 13px;
  text-align: center;
}

#workspaceShell .suite-c-page .company-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
  font-size: 12px;
  font-weight: 850;
}

#workspaceShell .suite-c-page .team-member {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#workspaceShell .suite-c-page .team-member-copy {
  min-width: 0;
}

#workspaceShell .suite-c-page .team-member-copy > strong,
#workspaceShell .suite-c-page .team-member-copy > span {
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#workspaceShell .suite-c-page .team-member-copy > span {
  display: block;
  margin-top: 3px;
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-page .leader-chip,
#workspaceShell .suite-c-page .self-chip {
  margin-left: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
  font-size: 12px;
}

#workspaceShell .suite-c-page .member-actions {
  display: flex;
  gap: 6px;
}

/* Team */
#workspaceShell .suite-c-team-hero {
  min-width: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 13px;
  background: linear-gradient(112deg, var(--suite-c-blue), #1396f3 70%, var(--suite-c-sky));
  color: var(--suite-c-white);
}

#workspaceShell .suite-c-team-hero-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 11px;
  background: rgba(255, 255, 255, .17);
}

#workspaceShell .suite-c-team-hero-icon svg {
  width: 23px;
  height: 23px;
}

#workspaceShell .suite-c-team-identity {
  min-width: 0;
  flex: 1;
}

#workspaceShell .suite-c-team-identity strong,
#workspaceShell .suite-c-team-identity span {
  display: block;
}

#workspaceShell .suite-c-team-identity strong {
  font-size: 19px;
  line-height: 1.35;
}

#workspaceShell .suite-c-team-identity span {
  margin-top: 5px;
  color: #d9efff;
  font-size: 13px;
  line-height: 1.5;
}

#workspaceShell .suite-c-team-quota {
  width: min(290px, 26vw);
  min-width: 220px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 9px;
  background: rgba(6, 72, 137, .18);
}

#workspaceShell .suite-c-team-quota > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

#workspaceShell .suite-c-team-quota span,
#workspaceShell .suite-c-team-quota strong {
  font-size: 12px;
}

#workspaceShell .suite-c-team-quota .suite-c-progress {
  margin-top: 9px;
  background: rgba(255, 255, 255, .25);
}

#workspaceShell .suite-c-team-quota .suite-c-progress i {
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-payment-lock {
  margin-top: 14px;
}

#workspaceShell .suite-c-payment-lock .suite-c-button {
  margin-left: auto;
}

#workspaceShell .suite-c-invite-card {
  margin-top: 14px;
}

#workspaceShell .suite-c-team-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: start;
  gap: 14px;
  min-width: 0;
}

#workspaceShell .suite-c-team-members-card .suite-c-table-wrap,
#workspaceShell .suite-c-team-recent-card .suite-c-table-wrap {
  max-height: 560px;
}

#workspaceShell .suite-c-team-audit-card .suite-c-table-wrap {
  max-height: 420px;
}

#workspaceShell .suite-c-team-audit-card {
  grid-column: 1 / -1;
  margin-top: 0;
}

#workspaceShell #teamAuditPanel {
  margin-top: 0 !important;
}

#workspaceShell #teamMemberTable {
  min-width: 720px;
}

#workspaceShell #teamRecentTable {
  min-width: 600px;
}

#workspaceShell #teamAuditTable {
  min-width: 820px;
}

/* Acquisition */
#workspaceShell .suite-c-acquisition-tabs {
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel {
  min-width: 0;
  min-height: 72px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--suite-c-line) !important;
  border-radius: 10px !important;
  background: var(--suite-c-white) !important;
  color: var(--suite-c-navy-soft) !important;
  box-shadow: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel > span {
  min-width: 0;
  color: inherit !important;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel strong,
#workspaceShell .suite-c-acquisition-tabs .acquisition-channel small {
  display: block;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel strong {
  color: inherit;
  font-size: 15px;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel small {
  margin-top: 4px;
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel.active {
  border-color: var(--suite-c-blue) !important;
  background: var(--suite-c-blue) !important;
  color: var(--suite-c-white) !important;
  box-shadow: 0 5px 0 #c5eaff;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel:disabled {
  border-color: var(--suite-c-line) !important;
  background: #f3f8fc !important;
  color: #8295a4 !important;
  box-shadow: none;
  cursor: not-allowed;
  opacity: .64;
}

#workspaceShell .suite-c-acquisition-tabs .acquisition-channel.active > svg,
#workspaceShell .suite-c-acquisition-tabs .acquisition-channel.active small {
  color: #d8efff;
}

#workspaceShell .suite-c-page .acquisition-pane.hidden {
  display: none !important;
}

#workspaceShell .suite-c-acquisition-layout {
  display: grid;
  grid-template-columns: minmax(360px, 370px) minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

#workspaceShell .suite-c-upload {
  min-height: 150px;
  padding: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px dashed #75bae1;
  border-radius: 10px;
  background: #f0f9ff;
  color: var(--suite-c-navy);
  text-align: center;
  cursor: pointer;
}

#workspaceShell .suite-c-upload > svg {
  width: 30px;
  height: 30px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-upload strong,
#workspaceShell .suite-c-upload span {
  display: block;
}

#workspaceShell .suite-c-upload strong {
  margin-top: 11px;
  font-size: 14px;
}

#workspaceShell .suite-c-upload span {
  max-width: 360px;
  margin-top: 6px;
  color: var(--suite-c-muted);
  font-size: 12px;
  line-height: 1.5;
}

#workspaceShell .suite-c-results {
  min-height: 390px;
  max-height: 600px;
  overflow: auto;
}

#workspaceShell .suite-c-results .search-empty {
  min-height: 330px;
  align-content: center;
  gap: 8px;
}

#workspaceShell .suite-c-results .search-empty > svg {
  width: 30px;
  height: 30px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-results .search-empty strong,
#workspaceShell .suite-c-results .search-empty span {
  display: block;
}

#workspaceShell .suite-c-results .search-empty strong {
  color: var(--suite-c-navy);
  font-size: 16px;
}

#workspaceShell .suite-c-results .search-empty span {
  max-width: 430px;
  color: var(--suite-c-muted);
  line-height: 1.6;
}

#workspaceShell .suite-c-results .search-running {
  min-height: 280px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 15px;
  color: var(--suite-c-navy);
  text-align: center;
}

#workspaceShell .suite-c-results .running-bar {
  width: min(320px, 80%);
  height: 7px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: #dcebf4;
}

#workspaceShell .suite-c-results .running-bar::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--suite-c-blue);
}

#workspaceShell .suite-c-results .source-result-list,
#workspaceShell .suite-c-results .search-result-list {
  display: grid;
  border: 1px solid var(--suite-c-line-soft);
  border-radius: 9px;
  background: var(--suite-c-white);
  overflow: hidden;
}

#workspaceShell .suite-c-results .source-result {
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-results .source-result:last-child,
#workspaceShell .suite-c-results .search-result-item:last-child {
  border-bottom: 0;
}

#workspaceShell .suite-c-results .source-result-copy {
  min-width: 0;
}

#workspaceShell .suite-c-results .source-result-copy strong,
#workspaceShell .suite-c-results .source-result-copy a,
#workspaceShell .suite-c-results .source-result-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#workspaceShell .suite-c-results .source-result-copy strong {
  color: var(--suite-c-navy);
  font-size: 14px;
}

#workspaceShell .suite-c-results .source-result-copy a {
  margin-top: 4px;
  color: var(--suite-c-blue);
  font-size: 12px;
}

#workspaceShell .suite-c-results .source-result-copy span {
  margin-top: 4px;
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-results .search-result-item {
  min-width: 0;
  padding: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--suite-c-line-soft);
  font-size: 13px;
}

#workspaceShell .suite-c-results .muted {
  color: var(--suite-c-muted);
  font-size: 12px;
  line-height: 1.5;
}

#workspaceShell .suite-c-results .green {
  color: var(--suite-c-blue);
  font-size: 12px;
  font-weight: 780;
}

#workspaceShell .suite-c-results button.primary {
  border-color: var(--suite-c-blue);
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
  box-shadow: none;
}

#workspaceShell .suite-c-results button.primary:hover {
  border-color: var(--suite-c-blue-deep);
  background: var(--suite-c-blue-deep);
  color: var(--suite-c-white);
  box-shadow: none;
}

#workspaceShell .suite-c-results .result-summary {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

#workspaceShell .suite-c-results .result-stat {
  padding: 12px;
  border: 1px solid var(--suite-c-line-soft);
  border-radius: 8px;
  background: var(--suite-c-soft);
}

#workspaceShell .suite-c-results .result-stat span,
#workspaceShell .suite-c-results .result-stat strong {
  display: block;
}

#workspaceShell .suite-c-results .result-stat span {
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-results .result-stat strong {
  margin-top: 6px;
  color: var(--suite-c-navy);
  font-size: 20px;
}

#workspaceShell .suite-c-results .hint-box,
#workspaceShell .suite-c-results .acquisition-notice {
  padding: 12px 13px;
  border: 1px solid #afd1e5;
  border-radius: 8px;
  background: #f1f9ff;
  color: #4d7086;
  font-size: 12px;
  line-height: 1.55;
}

#workspaceShell .suite-c-results .import-preview-meta {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-results .table-wrap {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--suite-c-line-soft);
  border-radius: 8px;
}

#workspaceShell .suite-c-results .table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 12px;
}

#workspaceShell .suite-c-results .table-wrap th,
#workspaceShell .suite-c-results .table-wrap td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--suite-c-line-soft);
  text-align: left;
}

/* Reports */
#workspaceShell .suite-c-report-lead-grid,
#workspaceShell .suite-c-report-quality-grid,
#workspaceShell .suite-c-report-team-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

#workspaceShell .suite-c-report-lead-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#workspaceShell .suite-c-report-quality-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#workspaceShell .suite-c-report-team-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
}

#workspaceShell .suite-c-report-funnel {
  padding: 17px 18px;
}

#workspaceShell .suite-c-funnel-row {
  padding: 9px 0;
  display: grid;
  grid-template-columns: 110px 52px minmax(110px, 1fr) 145px;
  gap: 11px;
  align-items: center;
}

#workspaceShell .suite-c-funnel-row > span {
  color: #385c74;
  font-size: 13px;
}

#workspaceShell .suite-c-funnel-row > strong {
  color: var(--suite-c-navy);
  font-size: 15px;
}

#workspaceShell .suite-c-funnel-row > small {
  color: var(--suite-c-muted);
  font-size: 12px;
  text-align: right;
}

#workspaceShell .suite-c-channel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-channel-metrics > div {
  min-width: 0;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 9px;
  align-items: center;
  border-right: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-channel-metrics > div:last-child {
  border-right: 0;
}

#workspaceShell .suite-c-channel-metrics svg {
  width: 17px;
  height: 17px;
  grid-row: 1 / 3;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-channel-metrics span {
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-channel-metrics strong {
  min-width: 0;
  color: var(--suite-c-navy);
  font-size: 12px;
  overflow-wrap: anywhere;
}

#workspaceShell .suite-c-report-guide .suite-c-card-body {
  display: grid;
  gap: 4px;
}

#workspaceShell .suite-c-guide-step {
  min-width: 0;
  padding: 13px 0;
  display: flex;
  gap: 11px;
  border-bottom: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-guide-step:last-child {
  border-bottom: 0;
}

#workspaceShell .suite-c-guide-step > b {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
  font-size: 12px;
}

#workspaceShell .suite-c-guide-step strong,
#workspaceShell .suite-c-guide-step small {
  display: block;
}

#workspaceShell .suite-c-guide-step strong {
  color: var(--suite-c-navy);
  font-size: 13px;
}

#workspaceShell .suite-c-guide-step small {
  margin-top: 5px;
  color: var(--suite-c-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Records */
#workspaceShell .suite-c-record-toolbar {
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(170px, auto) minmax(150px, auto);
  gap: 9px;
  border-bottom: 1px solid var(--suite-c-line-soft);
  background: #fbfdff;
}

#workspaceShell .suite-c-search-control {
  height: 44px;
  min-width: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #acd0e4;
  border-radius: 8px;
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-search-control svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #7892a5;
}

#workspaceShell .suite-c-search-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--suite-c-navy);
  font: inherit;
  font-size: 14px;
}

#workspaceShell .suite-c-page .history-task,
#workspaceShell .suite-c-page .history-market,
#workspaceShell .suite-c-page .history-result {
  min-width: 0;
}

#workspaceShell .suite-c-page .history-task strong,
#workspaceShell .suite-c-page .history-task span,
#workspaceShell .suite-c-page .history-market strong,
#workspaceShell .suite-c-page .history-market span,
#workspaceShell .suite-c-page .history-result strong,
#workspaceShell .suite-c-page .history-result span {
  display: block;
}

#workspaceShell .suite-c-page .history-task strong {
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#workspaceShell .suite-c-page .history-task span,
#workspaceShell .suite-c-page .history-market span,
#workspaceShell .suite-c-page .history-result span {
  margin-top: 4px;
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell #historyTable,
#workspaceShell #taskCenterTable {
  min-width: 900px;
}

/* Account */
#workspaceShell .suite-c-account-hero {
  min-width: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #8ec7e9;
  border-radius: 12px;
  background: var(--suite-c-ice);
}

#workspaceShell .suite-c-account-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
  font-size: 17px;
  font-weight: 850;
}

#workspaceShell .suite-c-account-identity {
  min-width: 0;
}

#workspaceShell .suite-c-account-identity h3 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 22px;
}

#workspaceShell .suite-c-account-identity p {
  margin: 5px 0 0;
  color: var(--suite-c-muted);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

#workspaceShell .suite-c-account-badges {
  min-width: 0;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

#workspaceShell .suite-c-account-hero > .suite-c-button {
  margin-left: 4px;
}

#workspaceShell .suite-c-account-metrics {
  grid-template-columns: 1fr 1fr 2fr;
}

#workspaceShell .suite-c-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

#workspaceShell .suite-c-facts {
  display: grid;
}

#workspaceShell .suite-c-facts > div,
#workspaceShell .suite-c-account-team-panel .account-row {
  min-width: 0;
  min-height: 46px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--suite-c-line-soft);
  font-size: 13px;
}

#workspaceShell .suite-c-facts > div:last-child,
#workspaceShell .suite-c-account-team-panel .account-row:last-child {
  border-bottom: 0;
}

#workspaceShell .suite-c-facts > div > span,
#workspaceShell .suite-c-account-team-panel .account-row > span {
  color: var(--suite-c-muted);
}

#workspaceShell .suite-c-facts > div > strong,
#workspaceShell .suite-c-facts > div > div,
#workspaceShell .suite-c-account-team-panel .account-row > strong,
#workspaceShell .suite-c-account-team-panel .account-row > div {
  min-width: 0;
  color: var(--suite-c-navy);
  text-align: right;
  overflow-wrap: anywhere;
}

#workspaceShell .suite-c-account-team-panel:empty::before {
  content: "正在读取团队情况";
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--suite-c-muted);
  font-size: 13px;
}

#workspaceShell .suite-c-account-team-panel .account-panel-head {
  min-height: 64px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-account-team-panel .account-panel-head > div {
  min-width: 0;
}

#workspaceShell .suite-c-account-team-panel .account-panel-head > :last-child {
  margin-left: auto;
}

#workspaceShell .suite-c-account-team-panel .account-panel-head h3 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 18px;
}

#workspaceShell .suite-c-account-team-panel .account-panel-head p {
  margin: 4px 0 0;
  color: var(--suite-c-muted);
  font-size: 13px;
}

#workspaceShell .suite-c-account-team-panel .account-list {
  padding: 8px 18px;
}

#workspaceShell .suite-c-account-team-panel .account-team-members {
  padding: 0 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

#workspaceShell .suite-c-account-team-panel .account-member {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--suite-c-ice);
  color: #246e9e;
  font-size: 12px;
}

#workspaceShell .suite-c-inline-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

#workspaceShell .suite-c-inline-actions .feedback-status,
#workspaceShell .suite-c-billing-record-head .feedback-status {
  min-width: 0;
  color: var(--suite-c-muted);
  font-size: 12px;
  line-height: 1.45;
}

#workspaceShell .suite-c-setting-links {
  display: grid;
  gap: 10px;
}

#workspaceShell .suite-c-setting-links > button {
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--suite-c-line);
  border-radius: 9px;
  background: var(--suite-c-soft);
  color: var(--suite-c-navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

#workspaceShell .suite-c-setting-links > button:hover {
  border-color: var(--suite-c-blue);
  background: var(--suite-c-ice);
}

#workspaceShell .suite-c-setting-links > button > svg {
  width: 19px;
  height: 19px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-setting-links strong,
#workspaceShell .suite-c-setting-links small {
  display: block;
}

#workspaceShell .suite-c-setting-links strong {
  font-size: 14px;
}

#workspaceShell .suite-c-setting-links small {
  margin-top: 4px;
  color: var(--suite-c-muted);
  font-size: 12px;
}

/* Connections */
#workspaceShell .connection-page-pane {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--suite-c-soft);
}

#workspaceShell .connection-page-pane .tlc-connection-page {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 26px 28px 72px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--suite-c-soft);
  color: var(--suite-c-navy);
}

#workspaceShell .connection-page-pane,
#workspaceShell .connection-page-pane *,
#workspaceShell .connection-page-pane *::before,
#workspaceShell .connection-page-pane *::after {
  box-sizing: border-box;
}

#workspaceShell .connection-page-pane .tlc-page-head {
  min-height: 0;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  border: 0;
  background: transparent;
}

#workspaceShell .connection-page-pane .tlc-page-head > div:first-child {
  min-width: 0;
}

#workspaceShell .connection-page-pane .tlc-page-head .tlc-eyebrow {
  margin: 0 0 9px;
  color: var(--suite-c-blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .13em;
}

#workspaceShell .connection-page-pane .tlc-page-head h2 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 34px;
  line-height: 1.13;
  font-weight: 860;
  letter-spacing: -.045em;
}

#workspaceShell .connection-page-pane .tlc-page-head p:not(.tlc-eyebrow) {
  margin: 8px 0 0;
  color: var(--suite-c-muted);
  font-size: 14px;
  line-height: 1.65;
}

#workspaceShell .connection-page-pane .tlc-page-head > button {
  min-height: 42px;
  margin-left: auto;
  padding: 0 15px;
  flex: 0 0 auto;
  border: 1px solid #a9cee4;
  border-radius: 9px;
  background: var(--suite-c-white);
  color: var(--suite-c-navy-soft);
  box-shadow: none;
  font-size: 14px;
  font-weight: 760;
}

#workspaceShell .connection-page-pane .tlc-connection-layout,
#workspaceShell .connection-page-pane .tlc-wa-layout {
  min-width: 0;
  padding: 0;
  display: grid;
  align-items: start;
  gap: 14px;
}

#workspaceShell .connection-page-pane .tlc-connection-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

#workspaceShell .connection-page-pane .tlc-wa-layout {
  grid-template-columns: minmax(420px, 1fr) minmax(360px, .8fr);
  margin-bottom: 14px;
}

#workspaceShell .connection-page-pane .tlc-card {
  min-width: 0;
  border: 1px solid var(--suite-c-line);
  border-radius: 12px;
  background: var(--suite-c-white);
  box-shadow: none;
  overflow: hidden;
}

#workspaceShell .connection-page-pane .tlc-card-head {
  min-height: 64px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--suite-c-line-soft);
  background: var(--suite-c-white);
}

#workspaceShell .connection-page-pane .tlc-card-head > div {
  min-width: 0;
}

#workspaceShell .connection-page-pane .tlc-card-head > :last-child:not(:first-child) {
  margin-left: auto;
}

#workspaceShell .connection-page-pane .tlc-card-head h3 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 820;
}

#workspaceShell .connection-page-pane .tlc-card-head p {
  margin: 4px 0 0;
  color: var(--suite-c-muted);
  font-size: 13px;
  line-height: 1.5;
}

#workspaceShell .connection-page-pane .tlc-card-body {
  min-width: 0;
  padding: 18px;
}

#workspaceShell .connection-page-pane .tlc-form-section + .tlc-form-section {
  margin-top: 20px;
}

#workspaceShell .connection-page-pane .tlc-form-section h4,
#workspaceShell .connection-page-pane .tlc-advanced-settings h4 {
  color: var(--suite-c-navy);
  font-size: 13px;
}

#workspaceShell .connection-page-pane .tlc-provider-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

#workspaceShell .connection-page-pane .tlc-provider-options button {
  min-width: 0;
  min-height: 72px;
  padding: 8px;
  border: 1px solid var(--suite-c-line);
  border-radius: 9px;
  background: var(--suite-c-white);
  color: #536f83;
  box-shadow: none;
  font-size: 12px;
  font-weight: 760;
}

#workspaceShell .connection-page-pane .tlc-provider-options button.active,
#workspaceShell .connection-page-pane .tlc-provider-options button[aria-checked="true"],
#workspaceShell .connection-page-pane .tlc-wa-modes button.active,
#workspaceShell .connection-page-pane .tlc-wa-modes button[aria-selected="true"] {
  border-color: var(--suite-c-blue);
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
  box-shadow: none;
}

#workspaceShell .connection-page-pane .tlc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#workspaceShell .connection-page-pane .tlc-form-grid > label,
#workspaceShell .connection-page-pane .tlc-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #49697f;
  font-size: 13px;
  font-weight: 760;
}

#workspaceShell .connection-page-pane input,
#workspaceShell .connection-page-pane select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #acd0e4;
  border-radius: 8px;
  outline: 0;
  background: var(--suite-c-white);
  color: var(--suite-c-navy);
  box-shadow: none;
  font: inherit;
  font-size: 14px;
  accent-color: var(--suite-c-blue);
}

#workspaceShell .connection-page-pane input::placeholder {
  color: #8b9dac;
}

#workspaceShell .connection-page-pane button {
  box-shadow: none;
}

#workspaceShell .connection-page-pane :is(button, a, input, select, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(53, 184, 255, .25);
  outline-offset: 2px;
}

#workspaceShell .connection-page-pane .tlc-primary {
  border-color: var(--suite-c-blue);
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
}

#workspaceShell .connection-page-pane .tlc-status-chip,
#workspaceShell .connection-page-pane .whatsapp-account-state.ready {
  color: #176da8;
  background: #e2f4ff;
}

#workspaceShell .connection-page-pane .tlc-help-note {
  border-color: #a9d2e8;
  background: #f2faff;
  color: #476a81;
}

#workspaceShell .connection-page-pane .tlc-advanced-toggle,
#workspaceShell .connection-page-pane .tlc-advanced-settings {
  background: var(--suite-c-soft);
}

#workspaceShell .connection-page-pane .tlc-connection-guide {
  display: grid;
  gap: 14px;
}

#workspaceShell .connection-page-pane .tlc-guide-step > i {
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
}

#workspaceShell .connection-page-pane .tlc-switch:has(input:checked) {
  background: var(--suite-c-blue);
}

#workspaceShell .connection-page-pane .tlc-wa-modes {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  border-bottom: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .connection-page-pane .tlc-qr-frame {
  border-color: #9fcce5;
  background-color: var(--suite-c-soft);
}

#workspaceShell .connection-page-pane .tlc-wa-roster-card,
#workspaceShell .connection-page-pane .tlc-reliability {
  margin: 0 0 14px;
}

#workspaceShell .connection-page-pane .tlc-reliability {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Billing */
#workspaceShell .suite-c-billing-overview {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(290px, .74fr) minmax(0, 1.26fr);
  border-radius: 12px;
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
  overflow: hidden;
}

#workspaceShell .suite-c-billing-current {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .26);
}

#workspaceShell .suite-c-billing-current .billing-eyebrow,
#workspaceShell .suite-c-billing-current .billing-current-loading strong,
#workspaceShell .suite-c-billing-current .billing-current-loading span {
  display: block;
}

#workspaceShell .suite-c-billing-current .billing-eyebrow {
  color: #cfeaff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

#workspaceShell .suite-c-billing-current .billing-current-loading strong {
  margin-top: 12px;
  font-size: 22px;
}

#workspaceShell .suite-c-billing-current .billing-current-loading span {
  margin-top: 6px;
  color: #d7edff;
  font-size: 13px;
}

#workspaceShell .suite-c-billing-current .billing-current-title {
  min-width: 0;
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

#workspaceShell .suite-c-billing-current .billing-current-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
}

#workspaceShell .suite-c-billing-current .billing-current-icon svg {
  width: 21px;
  height: 21px;
}

#workspaceShell .suite-c-billing-current .billing-current-title strong,
#workspaceShell .suite-c-billing-current .billing-current-title span {
  display: block;
}

#workspaceShell .suite-c-billing-current .billing-current-title strong {
  color: var(--suite-c-white);
  font-size: 21px;
}

#workspaceShell .suite-c-billing-current .billing-current-title div > span {
  margin-top: 5px;
  color: #d7edff;
  font-size: 12px;
}

#workspaceShell .suite-c-billing-current .billing-current-title > .badge {
  background: var(--suite-c-white);
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-billing-metrics {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#workspaceShell .suite-c-billing-metrics article {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

#workspaceShell .suite-c-billing-metrics article:last-child {
  border-right: 0;
}

#workspaceShell .suite-c-billing-metrics span,
#workspaceShell .suite-c-billing-metrics strong,
#workspaceShell .suite-c-billing-metrics small {
  display: block;
}

#workspaceShell .suite-c-billing-metrics article > span {
  color: #d5edff;
  font-size: 12px;
}

#workspaceShell .suite-c-billing-metrics article > strong {
  margin-top: 10px;
  color: var(--suite-c-white);
  font-size: 21px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

#workspaceShell .suite-c-billing-metrics article > small {
  margin-top: 7px;
  color: #d5edff;
  font-size: 12px;
  line-height: 1.45;
}

#workspaceShell .suite-c-billing-metrics .suite-c-progress {
  margin-top: 10px;
  background: rgba(255, 255, 255, .25);
}

#workspaceShell .suite-c-billing-metrics .suite-c-progress i {
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-plan-section {
  min-width: 0;
}

#workspaceShell .suite-c-plan-head {
  margin: 0 0 14px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

#workspaceShell .suite-c-plan-head > div:first-child {
  min-width: 0;
}

#workspaceShell .suite-c-plan-head h3 {
  margin: 0;
  color: var(--suite-c-navy);
  font-size: 25px;
  line-height: 1.25;
}

#workspaceShell .suite-c-plan-head p:last-child {
  margin: 6px 0 0;
  color: var(--suite-c-muted);
  font-size: 13px;
}

#workspaceShell .suite-c-tabs {
  min-width: max-content;
  margin-left: auto;
  padding: 5px;
  display: flex;
  gap: 5px;
  border: 1px solid var(--suite-c-line);
  border-radius: 10px;
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-tabs button {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--suite-c-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

#workspaceShell .suite-c-tabs button.active {
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
}

#workspaceShell .suite-c-tabs button span {
  font-size: 12px;
}

#workspaceShell .suite-c-tabs button svg {
  width: 15px;
  height: 15px;
}

#workspaceShell .suite-c-plan-grid,
#workspaceShell .suite-c-plan-grid.billing-plans {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-skeleton {
  min-height: 420px;
  border: 1px solid var(--suite-c-line);
  border-radius: 11px;
  background: linear-gradient(110deg, #fff 20%, #edf7fd 38%, #fff 56%);
  background-size: 220% 100%;
}

#workspaceShell .suite-c-plan-grid .billing-plan {
  min-width: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--suite-c-line);
  border-radius: 11px;
  background: var(--suite-c-white);
}

#workspaceShell .suite-c-plan-grid .billing-plan.recommended {
  border: 2px solid var(--suite-c-blue);
  box-shadow: 0 8px 24px rgba(8, 124, 240, .09);
}

#workspaceShell .suite-c-plan-grid .billing-plan.current {
  background: #f6fbff;
}

#workspaceShell .suite-c-plan-grid .billing-plan-topline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-plan-grid .billing-plan-icon svg {
  width: 19px;
  height: 19px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-flags {
  min-width: 0;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-flag {
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--suite-c-ice);
  color: var(--suite-c-blue);
  font-size: 12px;
  font-weight: 780;
}

#workspaceShell .suite-c-plan-grid .billing-plan-flag.pending {
  background: var(--suite-c-yellow-soft);
  color: #826500;
}

#workspaceShell .suite-c-plan-grid .billing-plan-eyebrow {
  margin-top: 17px;
  color: var(--suite-c-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
}

#workspaceShell .suite-c-plan-grid .billing-plan h3 {
  margin: 7px 0 0;
  color: var(--suite-c-navy);
  font-size: 22px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-summary {
  min-height: 43px;
  margin: 7px 0 0;
  color: var(--suite-c-muted);
  font-size: 13px;
  line-height: 1.55;
}

#workspaceShell .suite-c-plan-grid .billing-plan-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-price strong {
  color: var(--suite-c-navy);
  font-size: 27px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-price span,
#workspaceShell .suite-c-plan-grid .billing-plan-charge {
  color: var(--suite-c-muted);
  font-size: 12px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-charge {
  margin-top: 4px;
  min-height: 19px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-service,
#workspaceShell .suite-c-plan-grid .billing-plan-inclusion {
  margin-top: 13px;
  padding: 11px;
  border-radius: 8px;
  background: var(--suite-c-soft);
}

#workspaceShell .suite-c-plan-grid .billing-plan-service {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #42677e;
  font-size: 12px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-service svg {
  width: 15px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-plan-grid .billing-plan-inclusion strong,
#workspaceShell .suite-c-plan-grid .billing-plan-inclusion span {
  display: block;
}

#workspaceShell .suite-c-plan-grid .billing-plan-inclusion strong {
  color: var(--suite-c-navy);
  font-size: 13px;
}

#workspaceShell .suite-c-plan-grid .billing-plan-inclusion span {
  margin-top: 4px;
  color: var(--suite-c-muted);
  font-size: 12px;
  line-height: 1.45;
}

#workspaceShell .suite-c-plan-grid .billing-plan-divider {
  margin: 15px 0;
  border-top: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-plan-grid .billing-plan ul {
  margin: 0 0 17px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

#workspaceShell .suite-c-plan-grid .billing-plan li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #355b73;
  font-size: 12px;
  line-height: 1.5;
}

#workspaceShell .suite-c-plan-grid .billing-plan li svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-plan-grid .billing-plan > button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #a9cee4;
  border-radius: 8px;
  background: var(--suite-c-white);
  color: var(--suite-c-navy-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  box-shadow: none;
  cursor: pointer;
}

#workspaceShell .suite-c-plan-grid .billing-plan > button.primary {
  border-color: var(--suite-c-blue);
  background: var(--suite-c-blue);
  color: var(--suite-c-white);
  box-shadow: none;
}

#workspaceShell .suite-c-plan-grid .billing-plan > button.primary:hover {
  border-color: var(--suite-c-blue-deep);
  background: var(--suite-c-blue-deep);
  color: var(--suite-c-white);
  box-shadow: none;
}

#workspaceShell .suite-c-plan-grid .billing-plan > button:disabled {
  cursor: not-allowed;
  opacity: .58;
}

#workspaceShell .suite-c-plan-note {
  margin-top: 12px;
}

#workspaceShell .suite-c-billing-record-head {
  min-height: 64px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--suite-c-line-soft);
}

#workspaceShell .suite-c-billing-record-head .suite-c-tabs {
  margin-left: 0;
}

#workspaceShell .suite-c-billing-record-head .feedback-status {
  margin-left: auto;
  text-align: right;
}

#workspaceShell .suite-c-card-head-inner {
  border-top: 0;
}

#workspaceShell .suite-c-billing-invoice-form {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#workspaceShell .suite-c-billing-invoice-actions {
  padding: 0 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

#workspaceShell .suite-c-billing-invoice-actions > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--suite-c-muted);
  font-size: 12px;
  line-height: 1.5;
}

#workspaceShell .suite-c-billing-invoice-actions > span svg {
  width: 15px;
  flex: 0 0 15px;
  color: var(--suite-c-blue);
}

#workspaceShell .suite-c-billing-invoice-actions > .suite-c-button {
  margin-left: auto;
}

#workspaceShell #billingOrderTable {
  min-width: 800px;
}

#workspaceShell #billingOrderTable .billing-invoice-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--suite-c-blue);
  font-size: 12px;
  font-weight: 760;
}

#workspaceShell #billingOrderTable .billing-empty-state {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: var(--suite-c-muted);
  text-align: center;
}

#workspaceShell #billingOrderTable .billing-empty-state svg {
  width: 26px;
  height: 26px;
  color: var(--suite-c-blue);
}

#workspaceShell #billingOrderTable .billing-empty-state strong,
#workspaceShell #billingOrderTable .billing-empty-state span {
  display: block;
}

#workspaceShell #billingOrderTable .billing-empty-state strong {
  color: var(--suite-c-navy) !important;
  font-size: 13px !important;
}

@media (max-width: 1366px) {
  #workspaceShell .suite-c-main {
    padding: 24px 24px 68px;
  }

  #workspaceShell .connection-page-pane .tlc-connection-page {
    padding: 24px 24px 68px;
  }

}

@media (max-width: 1280px) {
  #workspaceShell .suite-c-main {
    padding: 22px 20px 64px;
  }

  #workspaceShell .connection-page-pane .tlc-connection-page {
    padding: 22px 20px 64px;
  }

  #workspaceShell .suite-c-page-copy h2,
  #workspaceShell .connection-page-pane .tlc-page-head h2 {
    font-size: 32px;
  }

  #workspaceShell .suite-c-team-hero {
    flex-wrap: wrap;
  }

  #workspaceShell .suite-c-team-quota {
    width: min(330px, 34vw);
  }

}

@media (max-width: 1180px) {
  #workspaceShell .connection-page-pane .tlc-connection-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1093px) {
  #workspaceShell .suite-c-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workspaceShell .suite-c-form-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workspaceShell .suite-c-form-grid-four .suite-c-form-action {
    width: 100%;
  }

  #workspaceShell .suite-c-team-workspace,
  #workspaceShell .suite-c-report-lead-grid,
  #workspaceShell .suite-c-report-quality-grid,
  #workspaceShell .suite-c-report-team-grid,
  #workspaceShell .suite-c-account-grid,
  #workspaceShell .suite-c-acquisition-layout,
  #workspaceShell .suite-c-billing-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-team-audit-card {
    grid-column: auto;
  }

  #workspaceShell .suite-c-account-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workspaceShell .suite-c-account-metrics .suite-c-metric-wide {
    grid-column: 1 / -1;
  }

  #workspaceShell .suite-c-billing-current {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  #workspaceShell .suite-c-plan-grid,
  #workspaceShell .suite-c-plan-grid.billing-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workspaceShell .suite-c-plan-grid .billing-plan:last-child,
  #workspaceShell .suite-c-plan-grid .billing-plan-skeleton:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 911px) {
  #workspaceShell .suite-c-main {
    padding: 20px 18px 60px;
  }

  #workspaceShell .suite-c-page-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  #workspaceShell .suite-c-head-actions {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }

  #workspaceShell .suite-c-head-actions .suite-c-button:not(.suite-c-icon-button) {
    flex: 1 1 auto;
  }

  #workspaceShell .suite-c-team-quota {
    width: calc(100% - 64px);
    min-width: 0;
    margin-left: 64px;
  }

  #workspaceShell .suite-c-team-hero > .suite-c-button {
    margin-left: auto;
  }

  #workspaceShell .suite-c-record-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(150px, .5fr);
  }

  #workspaceShell .suite-c-record-toolbar > :last-child {
    grid-column: 2;
  }

  #workspaceShell .suite-c-account-hero {
    flex-wrap: wrap;
  }

  #workspaceShell .suite-c-account-badges {
    flex: 1 1 420px;
  }

  #workspaceShell .suite-c-account-hero > .suite-c-button {
    margin-left: auto;
  }

  #workspaceShell .suite-c-plan-head {
    align-items: flex-start;
    flex-direction: column;
  }

  #workspaceShell .suite-c-plan-head .suite-c-tabs {
    margin-left: 0;
  }

  #workspaceShell .suite-c-billing-record-head {
    align-items: flex-start;
    flex-direction: column;
  }

  #workspaceShell .suite-c-billing-record-head .feedback-status {
    margin-left: 0;
    text-align: left;
  }

  #workspaceShell .connection-page-pane .tlc-page-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  #workspaceShell .connection-page-pane .tlc-page-head > button {
    margin-left: 0;
  }

  #workspaceShell .connection-page-pane .tlc-wa-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  #workspaceShell .suite-c-main {
    padding: 18px 14px 56px;
  }

  #workspaceShell .connection-page-pane .tlc-connection-page {
    padding: 18px 14px 56px;
  }

  #workspaceShell .suite-c-page-copy h2,
  #workspaceShell .connection-page-pane .tlc-page-head h2 {
    font-size: 30px;
  }

  #workspaceShell .suite-c-page-copy > p:last-child,
  #workspaceShell .connection-page-pane .tlc-page-head p:not(.tlc-eyebrow) {
    font-size: 13px;
  }

  #workspaceShell .suite-c-card-head {
    padding: 12px 14px;
  }

  #workspaceShell .suite-c-card-body {
    padding: 14px;
  }

  #workspaceShell .suite-c-form-grid,
  #workspaceShell .suite-c-form-grid-four,
  #workspaceShell .suite-c-account-metrics,
  #workspaceShell .suite-c-billing-invoice-form {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-account-metrics .suite-c-metric-wide {
    grid-column: auto;
  }

  #workspaceShell .suite-c-acquisition-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  #workspaceShell .suite-c-acquisition-tabs .acquisition-channel {
    min-width: 210px;
    scroll-snap-align: start;
  }

  #workspaceShell .suite-c-team-hero {
    align-items: flex-start;
  }

  #workspaceShell .suite-c-team-hero-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  #workspaceShell .suite-c-team-quota {
    width: 100%;
    margin-left: 0;
    order: 4;
  }

  #workspaceShell .suite-c-team-hero > .suite-c-button {
    order: 3;
  }

  #workspaceShell .suite-c-funnel-row {
    grid-template-columns: 100px 45px minmax(100px, 1fr);
  }

  #workspaceShell .suite-c-funnel-row > small {
    grid-column: 3;
    text-align: left;
  }

  #workspaceShell .suite-c-channel-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-channel-metrics > div {
    border-right: 0;
    border-bottom: 1px solid var(--suite-c-line-soft);
  }

  #workspaceShell .suite-c-channel-metrics > div:last-child {
    border-bottom: 0;
  }

  #workspaceShell .suite-c-record-toolbar {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-record-toolbar > :last-child {
    grid-column: auto;
  }

  #workspaceShell .suite-c-account-badges {
    flex: 1 1 100%;
    margin-left: 72px;
    justify-content: flex-start;
  }

  #workspaceShell .suite-c-account-hero > .suite-c-button {
    width: 100%;
    margin-left: 72px;
  }

  #workspaceShell .suite-c-plan-grid,
  #workspaceShell .suite-c-plan-grid.billing-plans {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-plan-grid .billing-plan:last-child,
  #workspaceShell .suite-c-plan-grid .billing-plan-skeleton:last-child {
    grid-column: auto;
  }

  #workspaceShell .suite-c-billing-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-billing-metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  #workspaceShell .suite-c-billing-metrics article:last-child {
    border-bottom: 0;
  }

  #workspaceShell .suite-c-billing-invoice-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  #workspaceShell .suite-c-billing-invoice-actions > .suite-c-button {
    width: 100%;
    margin-left: 0;
  }

  #workspaceShell .connection-page-pane .tlc-provider-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workspaceShell .connection-page-pane .tlc-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .connection-page-pane .tlc-reliability {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  #workspaceShell .suite-c-main {
    padding: 14px 12px 48px;
  }

  #workspaceShell .suite-c-page-head {
    margin-bottom: 18px;
  }

  #workspaceShell .suite-c-eyebrow {
    font-size: 12px;
  }

  #workspaceShell .suite-c-page-copy h2 {
    font-size: 27px;
    line-height: 1.16;
  }

  #workspaceShell .suite-c-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-metric {
    min-height: 112px;
    padding: 15px;
  }

  #workspaceShell .suite-c-card-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #workspaceShell .suite-c-card-head > :last-child:not(:first-child) {
    margin-left: 0;
  }

  #workspaceShell .suite-c-team-hero {
    padding: 16px;
  }

  #workspaceShell .suite-c-team-identity {
    flex-basis: calc(100% - 58px);
  }

  #workspaceShell .suite-c-team-hero > .suite-c-button {
    width: 100%;
    order: 4;
  }

  #workspaceShell .suite-c-team-quota {
    order: 3;
  }

  #workspaceShell .suite-c-payment-lock {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #workspaceShell .suite-c-payment-lock .suite-c-button {
    width: 100%;
    margin-left: 0;
  }

  #workspaceShell .suite-c-acquisition-tabs .acquisition-channel {
    min-width: 185px;
  }

  #workspaceShell .suite-c-results .source-result {
    grid-template-columns: minmax(0, 1fr);
  }

  #workspaceShell .suite-c-results .source-result > button {
    width: 100%;
  }

  #workspaceShell .suite-c-results .result-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #workspaceShell .suite-c-funnel-row {
    grid-template-columns: 88px 40px minmax(70px, 1fr);
    gap: 7px;
  }

  #workspaceShell .suite-c-account-hero {
    padding: 16px;
  }

  #workspaceShell .suite-c-account-avatar {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  #workspaceShell .suite-c-account-identity {
    flex-basis: calc(100% - 64px);
  }

  #workspaceShell .suite-c-account-badges,
  #workspaceShell .suite-c-account-hero > .suite-c-button {
    margin-left: 0;
  }

  #workspaceShell .suite-c-facts > div,
  #workspaceShell .suite-c-account-team-panel .account-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  #workspaceShell .suite-c-facts > div > strong,
  #workspaceShell .suite-c-facts > div > div,
  #workspaceShell .suite-c-account-team-panel .account-row > strong,
  #workspaceShell .suite-c-account-team-panel .account-row > div {
    text-align: left;
  }

  #workspaceShell .suite-c-inline-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  #workspaceShell .suite-c-inline-actions .suite-c-button {
    width: 100%;
  }

  #workspaceShell .suite-c-plan-head .suite-c-tabs,
  #workspaceShell .suite-c-billing-record-head .suite-c-tabs {
    width: 100%;
    min-width: 0;
  }

  #workspaceShell .suite-c-tabs button {
    flex: 1;
    justify-content: center;
  }

  #workspaceShell .suite-c-billing-current .billing-current-title {
    grid-template-columns: auto minmax(0, 1fr);
  }

  #workspaceShell .suite-c-billing-current .billing-current-title > .badge {
    grid-column: 1 / -1;
  }

  #workspaceShell .connection-page-pane .tlc-provider-options,
  #workspaceShell .connection-page-pane .tlc-reliability {
    grid-template-columns: minmax(0, 1fr);
  }
}
