/* Multi-organization control centre */

.organization-switcher {
  width: min(230px, 22vw);
  min-height: 38px;
  padding: 0 32px 0 11px;
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xs);
  outline: 0;
  background: var(--paper-light);
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
}

.organization-switcher:focus {
  border-color: var(--teal);
  box-shadow: var(--focus);
}

.platform-heading {
  align-items: center;
}

.platform-owner-badge,
.organization-status,
.member-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  color: var(--teal-dark);
  border: 1px solid rgba(42, 129, 123, 0.22);
  border-radius: 99px;
  background: rgba(42, 129, 123, 0.1);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--paper-light);
  box-shadow: 0 14px 36px rgba(20, 43, 64, 0.08);
}

.platform-layout.is-wide {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  overflow: visible;
  box-shadow: none;
}

.platform-directory[hidden] {
  display: none;
}

.platform-directory {
  min-width: 0;
  border-right: 1px solid var(--rule);
  background: var(--paper);
}

.platform-directory__head {
  display: grid;
  gap: 2px;
  min-height: 104px;
  align-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--rule);
}

.platform-directory__head strong {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 600;
}

.platform-directory__head small {
  color: var(--muted);
  font-size: 14px;
}

.organization-list {
  display: grid;
  max-height: 690px;
  overflow-y: auto;
}

.organization-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 78px;
  padding: 13px 16px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(205, 191, 174, 0.72);
  background: transparent;
  text-align: left;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.organization-row:hover,
.organization-row.is-active {
  background: var(--paper-light);
}

.organization-row.is-active {
  box-shadow: inset 3px 0 0 var(--teal);
}

.organization-row__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(20, 43, 64, 0.13);
  border-radius: 10px;
  background: var(--ochre-pale);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}

.organization-row__mark svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.organization-row strong,
.organization-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.organization-row strong {
  font-size: 14px;
}

.organization-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.organization-row__count {
  min-width: 28px;
  padding: 4px 7px;
  color: var(--ink-soft);
  border-radius: 99px;
  background: var(--paper-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
}

.platform-inspector {
  min-width: 0;
  background: var(--paper-light);
}

.platform-inspector--wide {
  width: 100%;
  border-radius: inherit;
}

.operations-surface {
  display: grid;
  min-width: 0;
  gap: 22px;
  padding: clamp(22px, 3vw, 36px);
}

.operations-toolbar,
.tech-surface-head,
.tech-tracker-toolbar,
.ideas-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.operations-toolbar > div,
.tech-surface-head > div {
  display: grid;
  gap: 8px;
}

.operations-toolbar p,
.tech-surface-head p,
.ideas-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.operations-toolbar p strong {
  color: var(--ink-soft);
}

.operations-subnav,
.term-switch {
  display: flex;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}

.operations-subnav {
  gap: 0;
  overflow: visible;
  padding: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
}

.term-switch {
  gap: 3px;
  padding: 3px;
  border-radius: 9px;
  background: var(--paper-dark);
}

.operations-subnav__button,
.term-button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink-soft);
  border: 0;
  border-radius: var(--radius-xs);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.operations-subnav__button {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-bottom-color: var(--rule);
  border-radius: 7px 7px 0 0;
}

.operations-subnav__button:hover,
.term-button:hover {
  color: var(--ink);
}

.operations-subnav__button.is-active,
.term-button.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 3px 10px rgba(20, 43, 64, 0.1);
}

.operations-subnav__button.is-active {
  border-color: var(--rule);
  border-bottom-color: var(--white);
  box-shadow: inset 0 2px 0 var(--ochre);
}

.operations-search {
  display: grid;
  width: min(310px, 100%);
  min-width: 220px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius-xs);
  background: var(--white);
}

.operations-search:focus-within {
  border-color: var(--teal);
  box-shadow: var(--focus);
}

.operations-search svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.operations-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.operations-table-wrap,
.tech-table-wrap,
.ideas-table-wrap {
  min-width: 0;
  overflow: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.operations-table-wrap {
  max-height: min(650px, calc(100vh - 330px));
}

.operations-table,
.tech-tips-table,
.ideas-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
  font-size: 15px;
}

.operations-table {
  min-width: 760px;
}

.operations-table thead,
.tech-tips-table thead,
.ideas-table thead {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--paper);
}

.operations-table th,
.operations-table td,
.tech-tips-table th,
.tech-tips-table td,
.ideas-table th,
.ideas-table td {
  padding: 12px 14px;
  border-right: 1px solid rgba(205, 191, 174, 0.58);
  border-bottom: 1px solid rgba(205, 191, 174, 0.72);
  text-align: left;
  vertical-align: middle;
}

.operations-table th:last-child,
.operations-table td:last-child,
.tech-tips-table th:last-child,
.tech-tips-table td:last-child,
.ideas-table th:last-child,
.ideas-table td:last-child {
  border-right: 0;
}

.operations-table thead th,
.tech-tips-table thead th,
.ideas-table thead th {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.operations-table tbody tr:last-child td,
.tech-tips-table tbody tr:last-child td,
.tech-tips-table tbody tr:last-child th,
.ideas-table tbody tr:last-child td,
.ideas-table tbody tr:last-child th {
  border-bottom: 0;
}

.operations-table tbody tr:hover,
.tech-tips-table tbody tr:hover,
.ideas-table tbody tr:hover {
  background: rgba(217, 238, 234, 0.24);
}

.operations-table th:first-child {
  width: 220px;
}

.operations-table th:nth-child(2) {
  width: 110px;
}

.operations-person {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.operations-person__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--ochre-pale);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}

.operations-person strong,
.operations-person small {
  display: block;
}

.operations-person strong {
  font-size: 15px;
}

.operations-person small,
.school-chip-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.team-label {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  color: var(--ink-soft);
  border-radius: 99px;
  background: var(--paper-dark);
  font-size: 14px;
  font-weight: 800;
}

.team-label--ali,
.team-label--team-pro {
  color: #7b3f2c;
  background: #f4dfd5;
}

.team-label--nebraz,
.team-label--team-vested {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.school-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.school-chip-list > span {
  padding: 4px 7px;
  color: var(--ink-soft);
  border: 1px solid rgba(205, 191, 174, 0.76);
  border-radius: 4px;
  background: var(--paper-light);
  font-size: 14px;
}

.schedule-board {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.schedule-day {
  min-width: 190px;
  border-right: 1px solid var(--rule);
}

.schedule-day:last-child {
  border-right: 0;
}

.schedule-day header {
  position: sticky;
  top: 0;
  display: grid;
  gap: 2px;
  padding: 14px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.schedule-day header strong {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
}

.schedule-day header span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

.schedule-day ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-day li {
  min-height: 39px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(205, 191, 174, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

.operations-source {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 17px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}

.operations-source svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--teal-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.operations-source strong,
.operations-source small {
  display: block;
}

.operations-source strong {
  color: var(--ink-soft);
  font-size: 14px;
}

.operations-source small {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.5;
}

.operations-empty,
.operations-loading {
  display: grid;
  gap: 4px;
  place-items: center;
  padding: 46px 24px;
  color: var(--muted);
  text-align: center;
}

.operations-loading {
  min-height: 480px;
}

.operations-empty strong,
.operations-loading strong {
  color: var(--ink);
  font-size: 14px;
}

.operations-empty span,
.operations-loading span {
  font-size: 13px;
}

.tech-surface-head {
  align-items: center;
}

.save-note {
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.tech-tracker-toolbar {
  align-items: center;
}

.tech-tracker-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.tech-tracker-filters select {
  min-width: 150px;
  min-height: 40px;
  padding: 0 9px;
  color: var(--ink);
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius-xs);
  outline: 0;
  background: var(--white);
  font-size: 14px;
}

.tech-tracker-filters select:focus {
  border-color: var(--teal);
  box-shadow: var(--focus);
}

.tech-progress {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.tech-progress > div {
  display: grid;
  min-width: 150px;
  gap: 1px;
  padding-right: 18px;
  border-right: 1px solid var(--rule);
}

.tech-progress strong {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
}

.tech-progress span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.tech-key {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rule-dark);
}

.tech-key--sent { background: var(--teal); }
.tech-key--late { background: var(--ochre); }
.tech-key--pending { background: var(--red); }
.tech-key--closed { background: var(--muted-light); }

.tech-table-wrap {
  max-height: min(680px, calc(100vh - 380px));
}

.tech-tips-table {
  min-width: 1080px;
}

.tech-tips-table thead th:first-child,
.tech-tips-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 130px;
  background: var(--paper-light);
}

.tech-tips-table thead th:first-child {
  z-index: 5;
  background: var(--paper);
}

.tech-tips-table thead th:nth-child(2),
.tech-tips-table tbody td:nth-child(2) {
  position: sticky;
  left: 130px;
  z-index: 2;
  width: 220px;
  background: var(--white);
  box-shadow: 1px 0 0 var(--rule);
}

.tech-tips-table thead th:nth-child(2) {
  z-index: 5;
  background: var(--paper);
}

.tech-status {
  width: 100%;
  min-width: 116px;
  min-height: 34px;
  padding: 0 7px;
  color: var(--ink-soft);
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius-xs);
  outline: 0;
  background: var(--paper-light);
  font-size: 13px;
  font-weight: 800;
}

.tech-status:focus {
  border-color: var(--teal);
  box-shadow: var(--focus);
}

.tech-status:disabled {
  cursor: progress;
  opacity: 0.58;
}

.tech-status--sent {
  color: var(--teal-dark);
  border-color: rgba(42, 129, 123, 0.36);
  background: var(--teal-pale);
}

.tech-status--late {
  color: #704d12;
  border-color: rgba(183, 130, 29, 0.42);
  background: var(--ochre-pale);
}

.tech-status--pending {
  color: #8f3527;
  border-color: rgba(201, 94, 73, 0.32);
  background: rgba(201, 94, 73, 0.09);
}

.tech-status--alternative,
.tech-status--declined,
.tech-status--not-scheduled {
  color: var(--muted);
  background: var(--paper-dark);
}

.ideas-toolbar {
  align-items: center;
}

.ideas-table-wrap {
  max-height: min(680px, calc(100vh - 330px));
}

.ideas-table {
  min-width: 1120px;
}

.ideas-table th:nth-child(2) {
  min-width: 290px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: none;
}

.ideas-table td:last-child {
  min-width: 260px;
  color: var(--muted);
  line-height: 1.45;
}

.idea-status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border-radius: 99px;
  background: var(--paper-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.platform-panel {
  display: grid;
  gap: 23px;
  max-width: 980px;
  padding: clamp(24px, 4vw, 48px);
}

.platform-panel--empty {
  max-width: 540px;
  min-height: 620px;
  align-content: center;
  justify-items: start;
}

.platform-empty-mark {
  color: var(--ochre);
  font-family: var(--font-mono);
  font-size: 44px;
}

.platform-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.platform-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.platform-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.organization-title,
.platform-section__head,
.platform-section--summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.organization-title > div {
  min-width: 0;
}

.organization-title h2 {
  overflow-wrap: anywhere;
}

.organization-status.is-archived,
.member-status--disabled {
  color: var(--muted);
  border-color: var(--rule);
  background: var(--paper-dark);
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.platform-metrics > div {
  display: grid;
  gap: 3px;
  min-height: 95px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--rule);
}

.platform-metrics > div:last-child {
  border-right: 0;
}

.platform-metrics strong {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.platform-metrics span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platform-open-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.platform-section {
  display: grid;
  gap: 15px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.platform-section--summary {
  display: flex;
  align-items: center;
}

.platform-form {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.platform-form--compact {
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.platform-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.55fr);
  gap: 12px;
}

.platform-form .field,
.account-create-form .field,
.member-reset-form label,
.member-card__controls label {
  display: grid;
  gap: 5px;
}

.platform-form label,
.member-card__controls label > span,
.member-reset-form label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.platform-form input,
.platform-form select,
.member-card input,
.member-card select,
.member-reset-form input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  color: var(--ink);
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius-xs);
  outline: 0;
  background: var(--white);
  font-size: 14px;
}

.platform-form input:focus,
.platform-form select:focus,
.member-card input:focus,
.member-card select:focus,
.member-reset-form input:focus {
  border-color: var(--teal);
  box-shadow: var(--focus);
}

.platform-form small,
.account-create-form small,
.member-reset-form small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.tenant-boundary-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px;
  color: var(--teal-dark);
  border: 1px solid rgba(42, 129, 123, 0.22);
  border-radius: var(--radius-sm);
  background: var(--teal-pale);
  font-size: 14px;
}

.tenant-boundary-note svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.tenant-boundary-note strong {
  display: block;
  margin-bottom: 2px;
}

.access-panel {
  gap: 14px;
}

.access-key {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.access-key span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 10px;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xs);
  background: var(--paper);
  font-size: 13px;
  line-height: 1.4;
}

.access-key strong {
  color: var(--ink);
  font-size: 13px;
}

.member-list {
  display: grid;
  gap: 9px;
}

.member-list--platform {
  max-height: 620px;
  overflow-y: auto;
  padding-right: 3px;
}

.member-card {
  display: grid;
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.member-card.is-disabled {
  opacity: 0.72;
}

.member-card__identity {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
}

.member-card__identity strong,
.member-card__identity span:not(.role-avatar):not(.member-status) {
  display: block;
  overflow-wrap: anywhere;
}

.member-card__identity strong {
  color: var(--ink);
  font-size: 14px;
}

.member-card__identity span:not(.role-avatar):not(.member-status) {
  color: var(--muted);
  font-size: 13px;
}

.member-card__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.7fr);
  gap: 8px;
}

.member-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.member-reset-form {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(42, 129, 123, 0.26);
  border-radius: var(--radius-xs);
  background: var(--teal-pale);
}

.member-reset-form > div {
  display: flex;
  gap: 7px;
}

.member-empty {
  display: grid;
  gap: 4px;
  padding: 24px;
  color: var(--muted);
  border: 1px dashed var(--rule-dark);
  border-radius: var(--radius-sm);
  text-align: center;
}

.member-empty strong {
  color: var(--ink);
  font-size: 14px;
}

.member-empty span {
  font-size: 13px;
}

.audit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.audit-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
}

.audit-row__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink-soft);
  border-radius: 9px;
  background: var(--paper-dark);
}

.audit-row__mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.audit-row strong,
.audit-row span,
.audit-row small {
  display: block;
}

.audit-row strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: capitalize;
}

.audit-row span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 14px;
}

.audit-row small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

.form-error {
  padding: 9px 10px;
  color: #8f3527;
  border: 1px solid rgba(201, 94, 73, 0.34);
  border-radius: var(--radius-xs);
  background: rgba(201, 94, 73, 0.1);
  font-size: 14px;
  font-weight: 700;
}
