.trade-block-page,
.trade-block-manage-page {
  width: 100%;
}

.trade-block-heading {
  align-items: end;
}

.trade-block-manage-link,
.trade-block-view-link {
  align-items: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 2.75rem;
}

.trade-block-filters {
  align-items: end;
  background: var(--tlfl-surface);
  border: 1px solid var(--tlfl-border);
  border-radius: var(--tlfl-radius);
  box-shadow: var(--tlfl-shadow-card);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(10rem, 1fr)) auto;
  margin-bottom: 0.75rem;
  padding: 1rem;
}

.trade-block-filter {
  margin: 0;
  min-width: 0;
}

.trade-block-filter label {
  font-size: 0.76rem;
}

.trade-block-filter .ui-input,
.trade-block-filter .ui-select {
  min-width: 0;
  width: 100%;
}

.trade-block-filter .ui-select:focus,
.trade-block-filter .ui-select:focus-visible,
.trade-block-filter .ui-select:active {
  border-color: #b8c4d7;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.84);
  outline: 0;
}

.trade-block-filter .ui-select:disabled,
.trade-block-filter .ui-select:disabled:hover {
  background:
    linear-gradient(45deg, transparent 50%, #94a3b8 50%) calc(100% - 1rem) 50% / 0.38rem 0.38rem no-repeat,
    linear-gradient(135deg, #94a3b8 50%, transparent 50%) calc(100% - 0.72rem) 50% / 0.38rem 0.38rem no-repeat,
    #eef2f7;
  border-color: #cbd5e1;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
  color: #94a3b8;
  cursor: not-allowed;
}

.trade-block-clear-filters {
  min-height: 2.55rem;
}

.trade-block-results-summary {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.trade-block-table-shell {
  background: #ffffff;
  border: 1px solid var(--tlfl-table-border);
  border-radius: var(--tlfl-radius);
  box-shadow: var(--tlfl-shadow-card);
  overflow-x: auto;
}

.trade-block-table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 64rem;
  table-layout: fixed;
  width: 100%;
}

.trade-block-table th,
.trade-block-table td {
  border-bottom: 1px solid var(--tlfl-table-border);
  padding: 0.78rem 0.85rem;
  text-align: left;
  vertical-align: middle;
}

.trade-block-table th {
  background: var(--tlfl-table-header-bg);
  color: var(--tlfl-table-header-text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  position: sticky;
  text-transform: uppercase;
  top: 0;
  z-index: 2;
}

.trade-block-sort-button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 0.35rem;
  letter-spacing: inherit;
  padding: 0;
  text-align: left;
  text-transform: inherit;
  width: 100%;
}

.trade-block-sort-button::after {
  border-left: 0.26rem solid transparent;
  border-right: 0.26rem solid transparent;
  content: "";
  display: none;
}

.trade-block-table th[aria-sort="ascending"] .trade-block-sort-button::after {
  border-bottom: 0.4rem solid currentColor;
  display: inline-block;
}

.trade-block-table th[aria-sort="descending"] .trade-block-sort-button::after {
  border-top: 0.4rem solid currentColor;
  display: inline-block;
}

.trade-block-table th:nth-child(1) {
  width: 17%;
}

.trade-block-table th:nth-child(2) {
  width: 28%;
}

.trade-block-table th:nth-child(3) {
  width: 34%;
}

.trade-block-table th:nth-child(4) {
  width: 13%;
}

.trade-block-table th:nth-child(5) {
  text-align: center;
  width: 8%;
}

.trade-block-row {
  background:
    linear-gradient(90deg, var(--trade-block-team-primary) 0 0.24rem, transparent 0.24rem),
    #ffffff;
}

.trade-block-row[hidden] {
  display: none;
}

.trade-block-row:hover {
  background:
    linear-gradient(90deg, var(--trade-block-team-primary) 0 0.24rem, transparent 0.24rem),
    #f8fafc;
}

.trade-block-row:last-of-type td {
  border-bottom: 0;
}

.trade-block-team-link,
.trade-block-asset-content {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  min-width: 0;
}

.trade-block-team-link {
  color: var(--tlfl-link);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.trade-block-team-link:visited {
  color: var(--tlfl-link);
}

.trade-block-team-link:hover,
.trade-block-team-link:focus {
  color: var(--tlfl-link);
  text-decoration: none;
}

.trade-block-player-headshot-link {
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.trade-block-player-headshot-link:focus-visible {
  outline: 2px solid var(--tlfl-blue);
  outline-offset: 2px;
}

.trade-block-team-logo,
.trade-block-player-headshot,
.trade-block-option-headshot {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: hidden;
}

.trade-block-team-logo {
  height: 2rem;
  padding: 0.16rem;
  width: 2rem;
}

.trade-block-team-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.trade-block-player-headshot {
  background: #edf2f8;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  height: 2.35rem;
  width: 2.35rem;
}

.trade-block-player-headshot img,
.trade-block-option-headshot img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.trade-block-asset-name {
  color: #172033;
  font-weight: 900;
  min-width: 0;
  text-decoration: none;
}

.trade-block-asset-name:visited,
.trade-block-asset-name:hover,
.trade-block-asset-name:focus {
  color: #172033;
}

.trade-block-asset-copy {
  align-content: center;
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.trade-block-asset-copy .trade-block-asset-name {
  line-height: 1.2;
}

.trade-block-player-meta {
  flex: 0 0 auto;
  margin-left: 0;
}

.trade-block-asset-marker,
.trade-block-option-marker {
  align-items: center;
  background: #eaf1fb;
  border: 1px solid #c9d7eb;
  border-radius: 50%;
  color: var(--tlfl-blue);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 1000;
  height: 2.15rem;
  justify-content: center;
  width: 2.15rem;
}

.trade-block-updated-cell {
  color: #526078;
  font-size: 0.9rem;
  font-weight: 800;
}

.trade-block-email-cell {
  text-align: center !important;
}

.trade-block-email-link,
.trade-block-email-unavailable {
  align-items: center;
  border-radius: 50%;
  color: var(--tlfl-link);
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  text-decoration: none;
  width: 2rem;
}

.trade-block-email-link:visited {
  color: var(--tlfl-link);
}

.trade-block-email-link:hover,
.trade-block-email-link:focus {
  background: #eaf1fb;
  color: var(--tlfl-link);
  text-decoration: none;
}

.trade-block-email-unavailable {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #94a3b8;
  opacity: 0.7;
}

.trade-block-email-icon {
  fill: none;
  height: 1.2rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.2rem;
}

.trade-block-looking-for-cell {
  color: #334155;
  line-height: 1.4;
}

.trade-block-looking-for-disclosure .tlfl-team-status-summary-text {
  -webkit-line-clamp: unset;
  display: block;
  font-size: inherit;
  line-height: inherit;
  max-height: none;
  overflow: visible;
  text-overflow: clip;
}

@media (min-width: 42.0625rem) {
  .trade-block-table .trade-block-looking-for-cell {
    line-height: 1.2;
    padding-bottom: 0.65rem;
    padding-top: 0.65rem;
  }

  .trade-block-looking-for-disclosure
    .tlfl-team-status-details:not([open])
    .tlfl-team-status-summary-text {
    max-height: 2.4em;
    overflow: hidden;
  }
}

.trade-block-filter-empty td {
  color: #64748b;
  font-weight: 800;
  padding: 1.25rem;
  text-align: center;
}

.trade-block-empty p:last-child {
  color: var(--tlfl-text-muted);
  margin: 0.8rem 0 0;
}

.trade-block-manage-heading {
  align-items: end;
  margin-bottom: 1.25rem;
}

.trade-block-team-selector {
  background: #f8fafc;
  border: 1px solid var(--tlfl-border);
  border-radius: var(--tlfl-radius);
  box-shadow: 0 0.45rem 1rem rgb(15 23 42 / 0.06);
  margin: 0 0 1rem;
  max-width: 32rem;
  padding: 0.85rem;
}

.trade-block-team-selector .ui-form-field {
  margin: 0;
}

.trade-block-manage-form {
  display: grid;
  gap: 1rem;
}

.trade-block-selection-summary {
  align-items: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--trade-block-team-primary) 10%, #ffffff),
    color-mix(in srgb, var(--trade-block-team-secondary) 14%, #ffffff)
  );
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--trade-block-team-primary) 24%, #d8e2ef);
  border-top: 0.28rem solid var(--trade-block-team-primary);
  border-radius: var(--tlfl-radius);
  box-shadow: 0 0.8rem 1.8rem rgb(15 23 42 / 0.12);
  color: #172033;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  padding: 1rem 1.1rem;
  position: relative;
}

.trade-block-selection-team {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  min-width: 0;
}

.trade-block-selection-team-logo {
  align-items: center;
  background: #ffffff;
  border: 2px solid color-mix(in srgb, var(--trade-block-team-primary) 35%, #ffffff);
  border-radius: 50%;
  box-shadow: 0 0.35rem 0.8rem rgb(15 23 42 / 0.14);
  color: var(--trade-block-team-primary);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  height: 3.8rem;
  justify-content: center;
  overflow: hidden;
  padding: 0.3rem;
  width: 3.8rem;
}

.trade-block-selection-team-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.trade-block-selection-summary-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.trade-block-selection-eyebrow {
  color: #475569;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.trade-block-selection-summary h2 {
  color: #172033;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 0;
}

.trade-block-selection-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.trade-block-selection-save-status {
  background: rgb(255 255 255 / 0.7);
  border: 1px solid color-mix(in srgb, var(--trade-block-team-primary) 22%, #cbd5e1);
  border-radius: 999px;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.3rem 0.55rem;
}

.trade-block-selection-clear {
  align-items: center;
  background: rgb(255 255 255 / 0.72);
  border-color: color-mix(in srgb, var(--trade-block-team-primary) 48%, #94a3b8);
  box-sizing: border-box;
  color: #334155;
  display: inline-flex;
  font-size: 0.76rem;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  min-height: 2rem;
  padding: 0 0.65rem;
  text-align: center;
}

.trade-block-selection-clear:hover:not(:disabled) {
  background: #ffffff;
  border-color: var(--trade-block-team-primary);
  color: #172033;
}

.trade-block-selection-clear:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--trade-block-team-primary) 22%, transparent);
  outline: 2px solid var(--trade-block-team-primary);
  outline-offset: 2px;
}

.trade-block-manage-page[data-trade-block-management-dirty="true"] .trade-block-selection-save-status {
  background: #fff3cd;
  border-color: #f5cf62;
  color: #7a4a00;
}

.trade-block-manage-assets-layout {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
}

.trade-block-manage-secondary-column {
  display: grid;
  gap: 1rem;
}

.trade-block-manage-section {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: var(--tlfl-radius);
  box-shadow: 0 0.65rem 1.35rem rgb(15 23 42 / 0.07);
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.trade-block-manage-section::before {
  background: var(--trade-block-team-primary);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 0.22rem;
}

.trade-block-manage-section-heading {
  align-items: start;
  background: linear-gradient(180deg, #fbfdff, #f7f9fc);
  border-bottom: 1px solid var(--tlfl-border-subtle);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: -1rem -1rem 0.9rem;
  padding: 0.9rem 1rem 0.8rem;
}

.trade-block-manage-section-heading h2 {
  margin: 0;
}

.trade-block-manage-section-heading p {
  color: var(--tlfl-text-muted);
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.trade-block-asset-selector-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trade-block-player-selector-grid,
.trade-block-draft-pick-selector-grid {
  grid-template-columns: 1fr;
}

.trade-block-asset-option {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.65rem;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.trade-block-asset-option:hover {
  background: #f7faff;
  border-color: #9db3d2;
  transform: translateY(-1px);
}

.trade-block-asset-option:has(input:focus-visible) {
  outline: 2px solid var(--trade-block-team-primary);
  outline-offset: 2px;
}

.trade-block-asset-option:has(input:checked) {
  background: #eef4fc;
  border-color: var(--trade-block-team-primary);
  box-shadow: inset 0 0 0 1px var(--trade-block-team-primary);
}

.trade-block-asset-option input {
  accent-color: var(--trade-block-team-primary);
  cursor: pointer;
  flex: 0 0 auto;
  height: 1rem;
  width: 1rem;
}

.trade-block-option-headshot {
  background: #edf2f8;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 900;
  height: 2.5rem;
  width: 2.5rem;
}

.trade-block-option-copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.trade-block-player-option-copy {
  align-content: center;
  display: grid;
  gap: 0.12rem;
  white-space: nowrap;
}

.trade-block-player-option-copy .player-inline-meta {
  margin-left: 0;
}

.trade-block-option-copy strong {
  color: #172033;
  line-height: 1.25;
}

.trade-block-option-copy > span {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 800;
}

.trade-block-draft-pick-option {
  align-items: center;
}

.trade-block-draft-pick-option .draft-pick-display-label {
  display: inline;
}

.trade-block-protection-option {
  align-items: center;
}

.trade-block-protection-marker {
  background: var(--trade-block-team-primary);
  border-color: var(--trade-block-team-primary);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.05rem;
}

.trade-block-looking-for-guidance {
  color: var(--tlfl-text-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 0.35rem 1rem;
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.trade-block-looking-for-guidance output {
  font-weight: 800;
}

.trade-block-preference-bulk {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 38rem) auto;
  justify-content: start;
  margin-bottom: 0.85rem;
  padding: 0.8rem;
}

.trade-block-preference-bulk .ui-form-field,
.trade-block-preference-field {
  margin: 0;
  max-width: none;
}

.trade-block-preference-bulk .ui-input {
  box-sizing: border-box;
}

.trade-block-looking-for-section .ui-input {
  box-sizing: border-box;
  width: 100%;
}

.trade-block-preference-field .ui-input {
  height: 2.45rem;
}

.trade-block-preference-apply {
  min-height: 2.55rem;
  white-space: nowrap;
}

.trade-block-preference-list {
  display: grid;
  gap: 0.65rem;
}

.trade-block-preference-row {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(13rem, 0.7fr) minmax(18rem, 1.3fr);
  padding: 0.75rem;
}

.trade-block-preference-row[hidden] {
  display: none;
}

.trade-block-preference-asset {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  min-width: 0;
}

.trade-block-preference-empty {
  margin: 0;
}

.trade-block-manage-actions {
  align-self: start;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgb(248 250 252 / 0.94);
  border: 1px solid #d8e2ef;
  border-radius: var(--tlfl-radius);
  box-shadow: 0 0.75rem 1.6rem rgb(15 23 42 / 0.12);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
  padding: 0.75rem;
  position: sticky;
  top: var(--tlfl-sticky-action-top);
  width: 100%;
  z-index: 900;
}

.trade-block-manage-primary-actions {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.trade-block-manage-actions .primary-action-link,
.trade-block-manage-actions .ui-button {
  box-sizing: border-box;
  height: 2.75rem;
}

.trade-block-manage-actions input.primary-action-link {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.trade-block-notification-dialog {
  background: transparent;
  border: 0;
  margin: auto;
  max-width: min(34rem, calc(100% - 2rem));
  padding: 0;
  width: 100%;
}

.trade-block-notification-dialog::backdrop {
  background: rgb(15 23 42 / 0.58);
  backdrop-filter: blur(2px);
}

.trade-block-notification-dialog-content {
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 12px;
  box-shadow: 0 1.5rem 4rem rgb(15 23 42 / 0.26);
  padding: 1.35rem;
}

.trade-block-notification-dialog-eyebrow {
  color: var(--tlfl-blue);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-block-notification-dialog h2 {
  margin: 0.35rem 0 0;
}

.trade-block-notification-dialog p {
  color: var(--tlfl-text-muted);
  line-height: 1.5;
  margin: 0.8rem 0 0;
}

.trade-block-notification-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.trade-block-notification-dialog-actions .primary-action-link {
  align-items: center;
  border: 0;
  font: inherit;
  font-weight: 900;
}

.trade-block-notification-dialog-cancel {
  margin-left: auto;
}

@media (max-width: 64rem) {
  .trade-block-manage-assets-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 50rem) {
  .trade-block-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trade-block-preference-bulk,
  .trade-block-preference-row {
    grid-template-columns: 1fr;
  }

  .trade-block-preference-apply {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 42rem) {
  .trade-block-heading {
    align-items: stretch;
  }

  .trade-block-manage-link {
    justify-content: center;
    width: 100%;
  }

  .trade-block-manage-heading {
    align-items: stretch;
  }

  .trade-block-view-link {
    justify-content: center;
    width: 100%;
  }

  .trade-block-filters {
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.85rem;
  }

  .trade-block-filter:nth-child(3) {
    grid-column: 1 / -1;
  }

  .trade-block-clear-filters {
    grid-column: 1 / -1;
  }

  .trade-block-results-summary {
    margin-left: 0.1rem;
  }

  .trade-block-table-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .trade-block-table {
    display: block;
    min-width: 0;
  }

  .trade-block-table thead {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .trade-block-table tbody {
    display: grid;
    gap: 0.65rem;
  }

  .trade-block-row {
    align-items: center;
    border: 1px solid var(--tlfl-border);
    border-radius: var(--tlfl-radius);
    box-shadow: var(--tlfl-shadow-card);
    column-gap: 0.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    overflow: hidden;
    padding: 0.65rem 0.7rem 0.75rem 0.9rem;
  }

  .trade-block-table td {
    border: 0;
    padding: 0.3rem 0;
  }

  .trade-block-team-cell {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .trade-block-team-link {
    gap: 0.5rem;
    min-width: 0;
  }

  .trade-block-team-link > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trade-block-updated-cell {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0.25rem !important;
    text-align: right !important;
    white-space: nowrap;
  }

  .trade-block-asset-cell,
  .trade-block-looking-for-cell {
    grid-column: 1 / -1;
  }

  .trade-block-asset-cell {
    border-top: 1px solid var(--tlfl-border-subtle) !important;
    grid-row: 2;
    margin-top: 0.35rem;
    padding-top: 0.65rem !important;
  }

  .trade-block-looking-for-cell {
    background: #f5f7fb;
    border: 1px solid #e3e8f0 !important;
    border-radius: var(--tlfl-radius-sm);
    display: grid;
    gap: 0.25rem;
    grid-row: 3;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0.25rem;
    padding: 0.6rem 0.65rem !important;
  }

  .trade-block-looking-for-cell::before {
    color: #64748b;
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .trade-block-email-cell {
    align-self: center;
    grid-column: 3;
    grid-row: 1;
    margin: 0;
    padding: 0 0 0 0.1rem !important;
  }

  .trade-block-email-link {
    border: 1px solid var(--tlfl-blue);
  }

  .trade-block-email-link:hover,
  .trade-block-email-link:focus {
    background: var(--tlfl-blue);
    color: #ffffff;
  }

  .trade-block-filter-empty {
    background: #ffffff;
    border: 1px solid var(--tlfl-border);
    border-radius: var(--tlfl-radius);
    display: block;
  }

  .trade-block-filter-empty[hidden] {
    display: none;
  }

  .trade-block-filter-empty td {
    display: block;
  }

  .trade-block-asset-selector-grid {
    grid-template-columns: 1fr;
  }

  .trade-block-manage-section {
    padding: 0.85rem;
  }

  .trade-block-manage-section-heading {
    margin: -0.85rem -0.85rem 0.85rem;
    padding: 0.8rem 0.85rem 0.72rem;
  }

  .trade-block-selection-summary {
    padding: 0.9rem;
  }

  .trade-block-manage-actions {
    align-items: stretch;
    backdrop-filter: none;
    display: grid;
  }

  .trade-block-manage-actions > * {
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .trade-block-manage-primary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trade-block-manage-actions .primary-action-link,
  .trade-block-manage-actions .ui-button {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .trade-block-notification-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trade-block-notification-dialog-actions > * {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }
}
