html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-text);
}

#sellerMain,
#sellerApp {
  min-height: 100vh;
}

.seller-login-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 53.7%) minmax(420px, 46.3%);
  grid-template-rows: minmax(0, 1fr) 84px;
  background: #07100f;
}

.seller-login-visual {
  position: relative;
  display: grid;
  min-height: calc(100vh - 84px);
  align-content: center;
  gap: 36px;
  overflow: hidden;
  padding: 108px 72px 64px clamp(64px, 17vw, 264px);
  border-right: 1px solid var(--color-border);
  background: #07100f;
}

.seller-login-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

/* 균일 34% 로는 사진 속 대시보드(밝은 차트·초록 도넛)를 못 눌러서
   "판매자 운영을 한곳에서" 가 그래프 위에 겹쳐 읽혔습니다.
   카피가 앉는 자리를 가장 어둡게 깔고 가장자리로 갈수록 사진을 살립니다. */
.seller-login-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(
    124% 104% at 34% 46%,
    rgba(2, 10, 9, 0.9) 0%,
    rgba(2, 10, 9, 0.68) 44%,
    rgba(2, 10, 9, 0.46) 78%,
    rgba(2, 10, 9, 0.4) 100%
  );
}

.seller-login-visual-copy,
.seller-login-trust,
.seller-login-visual-brand {
  position: relative;
  z-index: 1;
}

.seller-login-visual-brand {
  position: absolute;
  top: 28px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 900;
}

.seller-login-visual-brand span {
  padding-left: 28px;
  border-left: 1px solid var(--color-border-strong);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
}

.seller-login-eyebrow {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.seller-login-title {
  max-width: 650px;
  margin: 12px 0 18px;
  font-size: 36px;
  line-height: 1.15;
}

.seller-login-description {
  max-width: 630px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.seller-login-trust {
  display: grid;
  max-width: 320px;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--color-border);
  background: transparent;
}

.seller-login-trust-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.seller-login-trust-item:last-child {
  border-bottom: 0;
}

/* lucide 는 <i data-lucide> 를 <svg> 로 통째로 교체합니다.
   그래서 i 만 잡는 셀렉터는 아이콘이 그려진 뒤 죽습니다(buyer/public 은 svg 로 잡고 있습니다).
   둘 다 매칭해 아이콘 교체 전후 모두 성립하게 둡니다. */
.seller-login-trust-item > i,
.seller-login-trust-item > svg {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

/* 아이콘이 grid-row: 1 / 3 으로 1열 두 줄을 잡고 있어서, 자동 배치로 흘러가던
   설명(span)이 2열이 아니라 36px 짜리 아이콘 칸에 떨어졌습니다.
   "등록 / 장비의 / 연결 / 상태 / 확인" 처럼 한 단어씩 끊겨 보였습니다.
   트랙 정의(36px minmax(0,1fr))는 그대로 두고 자리만 명시합니다. */
.seller-login-trust-item strong {
  grid-column: 2;
  grid-row: 1;
}

.seller-login-trust-item span {
  grid-column: 2;
  grid-row: 2;
}

.seller-login-trust-item strong,
.seller-login-trust-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.seller-login-trust-item span {
  color: var(--color-text-subtle);
  font-size: 0.78rem;
  line-height: 1.4;
}

.seller-login-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 84px);
  padding: 72px clamp(72px, 8vw, 98px);
  background: #090d0e;
}

.seller-login-brand {
  position: absolute;
  top: 32px;
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 900;
  text-decoration: none;
}

.seller-login-heading {
  margin-bottom: 36px;
}

.seller-login-form-title {
  margin: 12px 0 10px;
  font-size: 36px;
}

.seller-login-form {
  display: grid;
  gap: 20px;
}

.seller-auth-field,
.seller-form-field {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.seller-auth-label,
.seller-form-label {
  color: var(--color-text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.seller-auth-control {
  position: relative;
}

.seller-auth-control > i,
.seller-auth-control > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 16px;
  width: 19px;
  height: 19px;
  color: var(--color-text-subtle);
  transform: translateY(-50%);
  pointer-events: none;
}

.seller-auth-control .input {
  width: 100%;
  min-height: 56px;
  padding-left: 48px;
}

.seller-login-submit {
  min-height: 56px;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.seller-login-status:empty {
  display: none;
}

.seller-inline-status,
.seller-command-status {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  line-height: 1.5;
}

.seller-inline-status-error,
.seller-command-error {
  border-color: rgba(239, 105, 105, 0.55);
  color: #ffaaaa;
}

.seller-command-success {
  border-color: rgba(66, 213, 173, 0.52);
  color: var(--color-primary);
}

.seller-login-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.seller-login-footer {
  display: grid;
  min-width: 0;
  grid-column: 1 / -1;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 38px;
  border-top: 1px solid var(--color-border);
  background: rgba(5, 16, 22, 0.98);
  color: var(--color-text-muted);
  font-size: 12px;
}

.seller-login-footer-brand {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
}

.seller-login-footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.seller-login-footer-links a:hover {
  color: var(--color-primary);
}

.seller-login-footer small {
  color: var(--color-text-subtle);
}

.workspace-onboarding {
  grid-template-columns: 208px minmax(0, 1fr);
}

.workspace-onboarding .workspace-body {
  min-width: 0;
}

.seller-onboarding-rail {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: 0 10px 22px;
  border-right: 1px solid var(--color-border);
  background: var(--color-canvas-soft);
}

.seller-onboarding-brand {
  display: grid;
  min-height: var(--header-height);
  padding: 0 10px;
  align-content: center;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 23px;
  font-weight: 900;
}

.seller-onboarding-rail-heading {
  display: grid;
  gap: 3px;
  padding: 20px 10px 12px;
}

.seller-onboarding-rail-heading span {
  color: var(--color-text-subtle);
  font-size: 11px;
}

.seller-onboarding-navigation {
  display: grid;
  align-content: start;
  gap: 5px;
}

.seller-onboarding-link {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.seller-onboarding-link[aria-current="step"] {
  background: rgba(66, 213, 173, 0.12);
  color: var(--color-primary);
  box-shadow: inset 2px 0 0 var(--color-primary);
}

.seller-onboarding-link svg {
  width: 18px;
  height: 18px;
}

.seller-onboarding-rail-note {
  margin: 0;
  padding: 14px 10px 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-subtle);
  font-size: 10px;
  line-height: 1.55;
}

.workspace-onboarding .workspace-topbar {
  min-height: 56px;
}

.workspace-onboarding .workspace-main {
  width: min(100%, 1500px);
  padding: 26px;
}

.seller-text-link {
  color: #9ed9e8;
  text-decoration: none;
}

.seller-text-link:hover {
  text-decoration: underline;
}

.seller-page {
  display: grid;
  width: 100%;
  margin: 0 auto;
  gap: 24px;
}

.seller-stepper {
  display: grid;
  margin: 0;
  padding: 4px 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.seller-stepper li {
  position: relative;
  display: grid;
  min-height: 58px;
  justify-items: center;
  gap: 7px;
  padding: 0 20px;
  color: var(--color-text-subtle);
  font-size: 12px;
  text-align: center;
}

.seller-stepper li::after {
  position: absolute;
  top: 16px;
  left: calc(50% + 21px);
  width: calc(100% - 42px);
  height: 1px;
  content: "";
  background: var(--color-border-strong);
}

.seller-stepper li:last-child::after {
  display: none;
}

.seller-step-number {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 32px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  font-weight: 800;
}

.seller-stepper .is-active,
.seller-stepper .is-complete {
  color: var(--color-text);
}

.seller-stepper .is-active .seller-step-number,
.seller-stepper .is-complete .seller-step-number {
  border-color: var(--color-primary);
  color: var(--color-primary-ink);
  background: var(--color-primary);
}

.seller-type-form {
  display: grid;
  gap: 22px;
}

.seller-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seller-type-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 278px;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
}

fieldset.seller-type-card {
  margin: 0;
}

fieldset.seller-type-card > .seller-type-card-heading {
  width: auto;
  margin: 0;
}

.seller-type-card:hover,
.seller-type-card:focus-within,
.seller-type-card.is-selected {
  border-color: var(--color-primary);
  background: #101a18;
}

.seller-type-card > input {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 22px;
  height: 22px;
  accent-color: var(--color-primary);
}

.seller-business-subtypes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seller-business-subtype {
  display: grid;
  min-width: 0;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-canvas-soft);
  cursor: pointer;
}

.seller-business-subtype:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(66, 213, 173, 0.08);
}

.seller-business-subtype input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--color-primary);
}

.seller-business-subtype-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.seller-business-subtype-copy small {
  color: var(--color-text-subtle);
  font-size: 10px;
  line-height: 1.4;
}

.seller-type-card-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 34px;
  font-size: 1.18rem;
}

.seller-type-card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background: var(--color-surface-raised);
}

.seller-type-description {
  min-height: 48px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.seller-type-requirements {
  display: grid;
  margin: 4px 0 0;
  padding: 18px 0 0;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.seller-type-requirements li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--color-text-muted);
}

.seller-type-requirements i,
.seller-type-requirements svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.seller-onboarding-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 6px 14px;
  padding: 20px 22px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.seller-onboarding-note > i,
.seller-onboarding-note > svg {
  grid-row: 1 / 3;
  color: var(--color-primary);
}

.seller-onboarding-note > strong,
.seller-onboarding-note p {
  grid-column: 2;
}

.seller-onboarding-note p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.seller-form-footer,
.seller-form-actions,
.seller-status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.seller-form-footer .seller-command-status,
.seller-form-actions .seller-command-status {
  margin-right: auto;
}

.seller-next-button {
  min-width: 210px;
}

.seller-application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: 0;
  align-items: start;
}

.seller-application-form {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.seller-form-section,
.seller-application-summary,
.seller-status-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.seller-panel-title {
  margin: 0 0 20px;
  font-size: 1rem;
}

.seller-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.seller-form-field .input {
  width: 100%;
}

.seller-policy-list {
  display: grid;
  gap: 10px;
}

.seller-policy-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-canvas-soft);
}

.seller-policy-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.seller-policy-item small {
  color: var(--color-text-subtle);
}

.seller-application-summary {
  position: sticky;
  top: var(--header-height);
  align-self: stretch;
  min-height: 100%;
  border-left: 1px solid var(--color-border);
  border-radius: 0;
}

.seller-sticky-actions {
  position: sticky;
  z-index: 8;
  bottom: 0;
  min-height: 64px;
  margin-top: 4px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  background: rgba(6, 17, 24, 0.98);
  box-shadow: 0 -12px 24px rgba(0, 0, 0, 0.22);
}

.seller-summary-list,
.seller-status-list,
.seller-guidance-list {
  display: grid;
  margin: 0;
  grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1.2fr);
}

.seller-summary-list dt,
.seller-summary-list dd,
.seller-status-list dt,
.seller-status-list dd,
.seller-guidance-list dt,
.seller-guidance-list dd {
  min-width: 0;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
  overflow-wrap: anywhere;
}

.seller-summary-list dt,
.seller-status-list dt,
.seller-guidance-list dt {
  color: var(--color-text-subtle);
}

.seller-summary-list dd,
.seller-status-list dd,
.seller-guidance-list dd {
  text-align: right;
}

.seller-review-timeline {
  display: grid;
  margin: 0;
  padding: 24px 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  list-style: none;
}

.seller-review-timeline li {
  position: relative;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 10px;
  color: var(--color-text-subtle);
  text-align: center;
}

.seller-review-timeline li::after {
  position: absolute;
  z-index: 0;
  top: 17px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 1px;
  content: "";
  background: var(--color-border-strong);
}

.seller-review-timeline li:last-child::after {
  display: none;
}

.seller-review-marker {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: var(--color-surface);
  font-weight: 800;
}

.seller-review-timeline .is-active,
.seller-review-timeline .is-complete {
  color: var(--color-text);
}

.seller-review-timeline .is-active .seller-review-marker {
  border-color: var(--color-warning);
  color: var(--color-warning);
}

.seller-review-timeline .is-complete .seller-review-marker {
  border-color: var(--color-primary);
  color: var(--color-primary-ink);
  background: var(--color-primary);
}

.seller-approval-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.65fr);
  gap: 16px;
  align-items: start;
}

.seller-approval-grid > .seller-status-panel:nth-child(2) {
  grid-row: 2;
  grid-column: 1 / -1;
}

.seller-approval-grid > .seller-status-panel:nth-child(3) {
  grid-row: 1;
  grid-column: 2;
}

.seller-status-primary {
  min-height: 246px;
}

.seller-approval-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 16px;
  align-items: stretch;
}

.seller-approval-stage,
.seller-review-guidance {
  height: 100%;
}

.seller-review-guidance {
  background: var(--color-canvas-soft);
}

.seller-approval-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.seller-approval-lower > .seller-status-panel {
  height: 100%;
}

.seller-honest-empty {
  display: grid;
  min-height: 104px;
  align-content: center;
  justify-items: start;
  gap: 7px;
  padding: 14px;
  border: 1px dashed var(--color-border-strong);
  color: var(--color-text-muted);
}

.seller-honest-empty svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-subtle);
}

.seller-honest-empty span {
  color: var(--color-text-subtle);
  font-size: 11px;
  line-height: 1.5;
}

.seller-review-message {
  padding: 14px;
  border-left: 2px solid var(--color-warning);
  background: var(--color-canvas-soft);
}

.seller-review-message p {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.seller-page-status {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.seller-status-heading {
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.seller-status-message {
  margin: 18px 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.seller-correction-list {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(239, 180, 74, 0.5);
  background: #18150d;
}

.seller-correction-list strong {
  color: var(--color-warning);
}

.seller-correction-list ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--color-text-muted);
}

.seller-command-status[hidden] {
  display: none;
}

.seller-dashboard-grid,
.seller-finance-layout,
.seller-profile-layout,
.seller-security-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.seller-dashboard-overview-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(260px, 1.1fr) minmax(280px, 1fr) minmax(240px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.seller-dashboard-overview-grid > .seller-service-panel {
  height: 100%;
}

.seller-priority-list {
  display: grid;
}

.seller-priority-row {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 30px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
}

.seller-priority-row:last-child {
  border-bottom: 0;
}

.seller-priority-row > svg:first-child {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.seller-priority-warning > svg:first-child {
  color: var(--color-warning);
}

.seller-priority-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.seller-priority-copy small {
  overflow: hidden;
  color: var(--color-text-subtle);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-priority-value {
  font-size: 24px;
}

.seller-device-donut {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.seller-device-donut svg {
  display: block;
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.seller-donut-track,
.seller-donut-active {
  fill: none;
  stroke-width: 10;
}

.seller-donut-track {
  stroke: var(--color-primary);
  opacity: 0.72;
}

.seller-donut-active {
  stroke: #73a8ff;
  stroke-linecap: round;
}

.seller-donut-center {
  position: absolute;
  top: 75px;
  left: 75px;
  display: grid;
  transform: translate(-50%, -50%);
  text-align: center;
}

.seller-donut-center strong {
  font-size: 28px;
}

.seller-donut-center span {
  color: var(--color-text-subtle);
  font-size: 10px;
}

.seller-donut-legend {
  display: grid;
  min-width: 0;
  margin: 0;
}

.seller-donut-legend > div {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
}

.seller-donut-legend > div:last-child {
  border-bottom: 0;
}

.seller-donut-legend dt,
.seller-donut-legend dd {
  margin: 0;
}

.seller-donut-legend dt {
  color: var(--color-text-muted);
  font-size: 12px;
}

.seller-donut-legend dt::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
}

.seller-donut-legend .seller-donut-active::before {
  background: #73a8ff;
}

.seller-service-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.seller-finance-summary,
.seller-registration-code,
.seller-product-assignment,
.seller-product-images,
.seller-refund-panel,
.seller-review-detail,
.seller-members {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.seller-panel-actions,
.seller-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.seller-pagination:empty {
  display: none;
}

.seller-registration-secret {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 15px;
  overflow: auto;
  border: 1px solid var(--color-border-strong);
  color: var(--color-primary);
  background: var(--color-canvas-soft);
  font-size: 0.9rem;
}

.seller-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.seller-detail-list {
  display: grid;
  min-width: 0;
  margin: 0;
  grid-template-columns: minmax(100px, 0.8fr) minmax(0, 1.2fr);
}

.seller-detail-list dt,
.seller-detail-list dd {
  min-width: 0;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  overflow-wrap: anywhere;
}

.seller-detail-list dt {
  color: var(--color-text-subtle);
}

.seller-detail-list dd {
  text-align: right;
}

.seller-danger-zone,
.seller-drawer-stack {
  display: grid;
  gap: 16px;
}

.seller-danger-zone {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.seller-button-danger {
  border-color: rgba(239, 105, 105, 0.55);
  color: #ffaaaa;
}

.seller-button-danger:hover {
  border-color: var(--color-danger);
  color: #ffd2d2;
}

.seller-invitation-page > .button {
  justify-self: start;
}

.seller-product-form,
.seller-profile-form,
.seller-payout-form,
.seller-password-form,
.seller-member-form,
.seller-conversation-form,
.seller-message-composer,
.seller-image-upload-form {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.seller-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  gap: 16px;
  align-items: start;
}

.seller-textarea {
  min-height: 116px;
  resize: vertical;
}

.seller-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.seller-product-image {
  display: grid;
  min-width: 0;
  margin: 0;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-canvas-soft);
}

.seller-product-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-surface-raised);
}

.seller-product-image figcaption {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.seller-bulk-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.seller-conversation-layout {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.seller-conversation-list {
  min-width: 0;
  overflow: auto;
  border-right: 1px solid var(--color-border);
}

.seller-conversation-item {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 9px;
  padding: 17px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.seller-conversation-item:hover,
.seller-conversation-item.is-active {
  background: var(--color-surface-hover);
}

.seller-conversation-item-head {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.seller-conversation-item-head strong,
.seller-conversation-preview {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-conversation-item small,
.seller-conversation-preview {
  color: var(--color-text-subtle);
}

.seller-conversation-thread-panel {
  min-width: 0;
  padding: 22px;
}

.seller-conversation-detail {
  display: grid;
  gap: 18px;
}

.seller-conversation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--color-text-muted);
}

.seller-message-thread {
  display: grid;
  max-height: 430px;
  margin: 0;
  padding: 0;
  gap: 12px;
  overflow: auto;
  list-style: none;
}

.seller-message {
  display: grid;
  width: min(78%, 640px);
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-canvas-soft);
}

.seller-message-seller {
  justify-self: end;
  border-color: rgba(66, 213, 173, 0.42);
  background: #0d1916;
}

.seller-message-platform_admin,
.seller-message-system {
  width: 100%;
  border-color: rgba(239, 180, 74, 0.38);
  background: #17140d;
}

.seller-message-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.seller-message p {
  margin: 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.seller-review-stars {
  color: var(--color-warning);
  font-size: 1.4rem;
}

.seller-review-body {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.seller-finance-warning {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 6px 12px;
  padding: 18px;
  border: 1px solid rgba(239, 180, 74, 0.52);
  background: #17140d;
}

.seller-finance-warning > i,
.seller-finance-warning > svg {
  grid-row: 1 / 3;
  color: var(--color-warning);
}

.seller-finance-warning p {
  margin: 0;
  color: var(--color-text-muted);
}

.seller-grant-fieldset {
  display: grid;
  margin: 0;
  padding: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--color-border);
}

.seller-grant-fieldset legend {
  padding: 0 8px;
}

.seller-grant-option {
  display: flex;
  gap: 9px;
  align-items: center;
}

.seller-grant-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

@media (min-width: 901px) {
  .workspace-seller .workspace-main {
    gap: 16px;
    padding: 20px 22px;
  }

  .workspace-seller .workspace-page-title {
    font-size: 28px;
  }

  .workspace-seller .workspace-kpi {
    min-height: 92px;
    padding: 13px 14px;
  }

  .workspace-seller .workspace-table th,
  .workspace-seller .workspace-table td {
    height: 46px;
    padding: 8px 12px;
  }

  .workspace-seller .seller-page {
    gap: 18px;
  }

  .workspace-seller .seller-service-panel {
    padding: 18px;
  }
}

@media (max-width: 1120px) {
  .seller-login-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .seller-login-trust {
    grid-template-columns: 1fr;
  }

  .seller-login-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .seller-login-trust-item:last-child {
    border-bottom: 0;
  }

  .seller-type-grid {
    grid-template-columns: 1fr;
  }

  .seller-type-card {
    min-height: 0;
  }

  .seller-approval-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-approval-lower {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-recent-message-region {
    grid-column: 1 / -1;
  }

  .seller-status-primary {
    grid-column: 1 / -1;
  }

  .seller-detail-grid,
  .seller-dashboard-overview-grid,
  .seller-dashboard-grid,
  .seller-finance-layout,
  .seller-profile-layout,
  .seller-security-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-editor-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .workspace-onboarding {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-onboarding-rail {
    display: none;
  }

  .workspace-onboarding .workspace-main {
    padding: 22px 16px 48px;
  }
}

@media (max-width: 820px) {
  .seller-login-shell {
    display: block;
  }

  .seller-login-visual {
    min-height: 360px;
    padding: 44px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  /* 브랜드는 데스크톱에서 padding-top 108px 아래 절대배치로 떠 있습니다.
     좁아지면 패딩이 44px 로 줄어 "PickPC" 가 "SELLER OPERATIONS" 위에 겹쳤습니다.
     여기서는 흐름에 태워 카피 위에 쌓이게 둡니다. */
  .seller-login-visual-brand {
    position: static;
    font-size: 26px;
  }

  .seller-login-title {
    font-size: 2.35rem;
  }

  .seller-login-trust {
    display: none;
  }

  .seller-login-panel {
    min-height: 620px;
    padding: 86px 24px 44px;
  }

  .seller-login-footer {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 18px;
    padding: 20px 24px;
  }

  .seller-login-footer-links {
    justify-content: flex-end;
  }

  .seller-login-footer small {
    grid-column: 1 / -1;
  }

  .seller-stepper {
    grid-template-columns: 1fr;
  }

  .seller-stepper li {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .seller-stepper li:last-child {
    border-bottom: 0;
  }

  .seller-application-layout,
  .seller-approval-grid {
    grid-template-columns: 1fr;
  }

  .seller-approval-hero,
  .seller-approval-lower {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-recent-message-region {
    grid-column: auto;
  }

  .seller-approval-grid > .seller-status-panel:nth-child(2),
  .seller-approval-grid > .seller-status-panel:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .seller-application-summary {
    position: static;
  }

  .seller-review-timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seller-review-timeline li {
    min-height: 44px;
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .seller-review-timeline li::after {
    top: 39px;
    left: 17px;
    width: 1px;
    height: 15px;
  }

  .seller-detail-grid,
  .seller-dashboard-overview-grid,
  .seller-dashboard-grid,
  .seller-finance-layout,
  .seller-profile-layout,
  .seller-security-layout,
  .seller-conversation-layout {
    grid-template-columns: 1fr;
  }

  .seller-conversation-list {
    max-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .seller-bulk-controls,
  .seller-danger-zone {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .seller-login-visual {
    min-height: 300px;
  }

  .seller-login-panel {
    min-height: 570px;
  }

  .seller-form-grid {
    grid-template-columns: 1fr;
  }

  .seller-business-subtypes {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-policy-item {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .seller-policy-item small {
    grid-column: 2;
  }

  .seller-form-footer,
  .seller-form-actions,
  .seller-status-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seller-form-footer .button,
  .seller-form-actions .button,
  .seller-status-actions .button,
  .seller-next-button {
    width: 100%;
  }

  .seller-message {
    width: 92%;
  }

  .seller-grant-fieldset {
    grid-template-columns: 1fr;
  }
}

/* Approved seller-center compositions */
.workspace-seller .workspace-main {
  width: min(100%, 1680px);
  padding: 18px 20px 24px;
}

.workspace-seller .seller-page {
  gap: 16px;
}

.workspace-seller .workspace-page-title {
  font-size: 27px;
}

.workspace-seller .seller-service-panel {
  padding: 17px;
}

.seller-summary-rail {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.seller-rail-section {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.seller-rail-section-title {
  margin: 0;
  font-size: 13px;
}

.seller-rail-section .workspace-state {
  min-height: 108px;
  border: 0;
  background: transparent;
}

.seller-dashboard-lower {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
}

.seller-dashboard-funnel-rows {
  display: grid;
  gap: 10px;
}

.seller-dashboard-funnel-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) minmax(120px, 1fr) 36px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.seller-dashboard-funnel-bar {
  display: block;
  width: calc(var(--seller-funnel-ratio) * 100%);
  min-width: 8%;
  height: 12px;
  background: var(--color-primary);
  opacity: 0.74;
}

.seller-dashboard-funnel-row > span:last-child {
  text-align: right;
}

.seller-dashboard-service-table {
  padding: 0;
  overflow: hidden;
}

.seller-dashboard-service-table > .seller-panel-title {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
}

.seller-dashboard-service-table > .workspace-table-wrap {
  border: 0;
  border-radius: 0;
}

.seller-summary-rail .seller-panel-actions {
  margin-top: 16px;
}

.seller-product-table-image {
  display: block;
  width: 58px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-canvas-soft);
}

.seller-device-donut {
  grid-template-columns: 154px minmax(0, 1fr);
}

.seller-device-donut svg {
  width: 154px;
  height: 154px;
  aspect-ratio: 1;
}

.seller-donut-center {
  top: 77px;
  left: 77px;
}

.workspace-seller[data-active-route="devices"] .seller-page,
.workspace-seller[data-active-route="device-approval"] .seller-page,
.workspace-seller[data-active-route="products"] .seller-page,
.workspace-seller[data-active-route="market-management"] .seller-page,
.workspace-seller[data-active-route="order-allocation"] .seller-page,
.workspace-seller[data-active-route="orders"] .seller-page,
.workspace-seller[data-active-route="active-rentals"] .seller-page,
.workspace-seller[data-active-route="reviews"] .seller-page,
.workspace-seller[data-active-route="settlements"] .seller-page,
.workspace-seller[data-active-route="order-detail"] .seller-page {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.workspace-seller[data-active-route="devices"] .workspace-page-header,
.workspace-seller[data-active-route="devices"] .workspace-kpis,
.workspace-seller[data-active-route="devices"] .workspace-toolbar,
.workspace-seller[data-active-route="device-approval"] .workspace-page-header,
.workspace-seller[data-active-route="device-approval"] .workspace-kpis,
.workspace-seller[data-active-route="device-approval"] .workspace-toolbar,
.workspace-seller[data-active-route="products"] .workspace-page-header,
.workspace-seller[data-active-route="products"] .workspace-kpis,
.workspace-seller[data-active-route="products"] .workspace-toolbar,
.workspace-seller[data-active-route="market-management"] .workspace-page-header,
.workspace-seller[data-active-route="market-management"] .workspace-kpis,
.workspace-seller[data-active-route="market-management"] .workspace-toolbar,
.workspace-seller[data-active-route="order-allocation"] .workspace-page-header,
.workspace-seller[data-active-route="order-allocation"] .workspace-kpis,
.workspace-seller[data-active-route="order-allocation"] .workspace-toolbar,
.workspace-seller[data-active-route="orders"] .workspace-page-header,
.workspace-seller[data-active-route="orders"] .workspace-kpis,
.workspace-seller[data-active-route="orders"] .workspace-toolbar,
.workspace-seller[data-active-route="active-rentals"] .workspace-page-header,
.workspace-seller[data-active-route="active-rentals"] .workspace-kpis,
.workspace-seller[data-active-route="active-rentals"] .workspace-toolbar,
.workspace-seller[data-active-route="reviews"] .workspace-page-header,
.workspace-seller[data-active-route="reviews"] .workspace-kpis,
.workspace-seller[data-active-route="reviews"] .workspace-toolbar,
.workspace-seller[data-active-route="settlements"] .workspace-page-header,
.workspace-seller[data-active-route="settlements"] .workspace-kpis,
.workspace-seller[data-active-route="settlements"] .workspace-toolbar,
.workspace-seller[data-active-route="order-detail"] .workspace-page-header,
.workspace-seller[data-active-route="order-detail"] .workspace-kpis {
  grid-column: 1 / -1;
}

.workspace-seller[data-active-route] .seller-summary-rail {
  position: sticky;
  top: 76px;
  grid-column: 2;
  grid-row: 4 / span 5;
}

.workspace-seller[data-active-route="devices"] .seller-service-panel:last-child {
  position: sticky;
  top: 76px;
  grid-column: 2;
  grid-row: 4 / span 5;
}

.workspace-seller[data-active-route="devices"] .workspace-table-wrap,
.workspace-seller[data-active-route="device-approval"] .workspace-table-wrap,
.workspace-seller[data-active-route="products"] .workspace-table-wrap,
.workspace-seller[data-active-route="market-management"] .workspace-table-wrap,
.workspace-seller[data-active-route="order-allocation"] .workspace-table-wrap,
.workspace-seller[data-active-route="orders"] .workspace-table-wrap,
.workspace-seller[data-active-route="active-rentals"] .workspace-table-wrap,
.workspace-seller[data-active-route="reviews"] .workspace-table-wrap {
  grid-column: 1;
}

.workspace-seller[data-active-route="settlements"] .seller-finance-layout {
  grid-column: 1;
}

.workspace-seller[data-active-route="dashboard"] .seller-dashboard-overview-grid {
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 1fr) minmax(260px, 0.9fr);
}

.seller-dashboard-analytics {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr) 300px;
  gap: 14px;
  align-items: stretch;
}

.seller-dashboard-analytics > .seller-service-panel,
.seller-dashboard-side > .seller-service-panel {
  height: 100%;
}

.seller-dashboard-side {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.seller-dashboard-trend .workspace-state {
  min-height: 176px;
  border: 0;
  background: transparent;
}

.workspace-seller[data-active-route="dashboard"] .workspace-table-wrap {
  max-height: 320px;
}

.workspace-seller[data-active-route="device-detail"] .seller-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workspace-seller[data-active-route="device-detail"] .seller-page {
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 0;
}

.workspace-seller[data-active-route="device-detail"] .workspace-page-header {
  grid-column: 1 / -1;
}

.workspace-seller[data-active-route="device-detail"] .seller-device-master {
  position: sticky;
  top: 76px;
  grid-column: 1;
  grid-row: 2;
  min-height: 640px;
  border: 1px solid var(--color-border);
  border-right: 0;
  background: var(--color-canvas-soft);
}

.workspace-seller[data-active-route="device-detail"] .seller-device-inspector {
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 2;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-canvas);
}

.seller-device-master-head,
.seller-device-inspector-head,
.seller-device-title-row,
.seller-device-command-bar {
  display: flex;
  align-items: center;
}

.seller-device-master-head {
  justify-content: space-between;
  min-height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid var(--color-border);
}

.seller-device-master-head > div {
  font-size: 15px;
  font-weight: 700;
}

.seller-device-master-head small {
  color: var(--color-text-subtle);
}

.seller-device-master-list .workspace-table-wrap {
  max-height: 590px;
  border: 0;
  border-radius: 0;
}

.seller-device-master-list .workspace-table th,
.seller-device-master-list .workspace-table td {
  height: 52px;
  padding: 8px 10px;
  font-size: 12px;
}

.seller-device-master-list .workspace-table td:first-child {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-device-master-list .workspace-table tbody tr[data-selected="true"] {
  outline: 1px solid var(--color-primary);
  outline-offset: -1px;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.seller-device-inspector-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.seller-device-identity {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.seller-device-identity h2,
.seller-device-identity p {
  margin: 0;
}

.seller-device-identity p {
  color: var(--color-text-subtle);
  font-size: 12px;
}

.seller-device-title-row {
  gap: 6px;
}

.seller-device-command-bar {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.seller-device-command-bar .button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.workspace-seller[data-active-route="device-detail"] .seller-detail-grid > :last-child {
  grid-column: 1 / -1;
}

.workspace-seller[data-active-route="device-detail"] .seller-device-inspector > .seller-service-panel {
  grid-column: 1;
}

.workspace-seller[data-active-route="settlement-detail"] .seller-page {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.workspace-seller[data-active-route="settlement-detail"] .workspace-page-header,
.workspace-seller[data-active-route="settlement-detail"] .workspace-kpis {
  grid-column: 1 / -1;
}

.workspace-seller[data-active-route="settlement-detail"] .seller-settlement-rail {
  position: sticky;
  top: 76px;
  grid-column: 2;
  grid-row: 3 / span 5;
}

.workspace-seller[data-active-route="settlement-detail"] .seller-page > :not(.workspace-page-header):not(.workspace-kpis):not(.seller-settlement-rail) {
  grid-column: 1;
}

.workspace-seller[data-active-route="rent-preparation"] .workspace-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workspace-seller[data-active-route="rent-preparation"] .seller-bulk-controls {
  grid-template-columns: minmax(320px, 0.7fr) minmax(180px, auto);
}

.workspace-seller[data-active-route="product-editor"] .seller-editor-layout {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.45fr);
}

.seller-editor-rail {
  position: sticky;
  top: 76px;
  display: grid;
  min-width: 0;
  gap: 14px;
}

.seller-product-preview {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.seller-product-preview-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-border);
  background: var(--color-canvas-soft);
}

.seller-product-preview-empty {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  color: var(--color-text-subtle);
  font-size: 12px;
}

.seller-product-preview-empty svg {
  width: 28px;
  height: 28px;
}

.seller-product-preview-spec {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.seller-product-preview-price {
  font-size: 20px;
}

.seller-order-lifecycle {
  display: grid;
  grid-column: 1 / -1;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin: 0;
  padding: 18px 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  list-style: none;
}

.workspace-seller[data-active-route="order-detail"] .seller-order-operational {
  grid-column: 1;
  grid-template-columns: minmax(0, 1fr);
}

.seller-order-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--color-text-subtle);
  font-size: 12px;
}

.seller-order-stage::after {
  position: absolute;
  top: 17px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: var(--color-border-strong);
  content: "";
}

.seller-order-stage:last-child::after {
  display: none;
}

.seller-order-stage > svg {
  z-index: 1;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: var(--color-canvas);
}

.seller-order-stage[data-state="complete"],
.seller-order-stage[data-state="current"] {
  color: var(--color-text);
}

.seller-order-stage[data-state="complete"] > svg,
.seller-order-stage[data-state="current"] > svg {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.seller-conversation-layout {
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr) minmax(260px, 0.34fr);
}

.seller-conversation-layout > .seller-summary-rail {
  position: static;
  grid-column: auto;
  grid-row: auto;
  border: 0;
  border-left: 1px solid var(--color-border);
}

.seller-settings-tabs {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--color-border);
}

.workspace-seller[data-active-route="profile"] .seller-profile-layout {
  grid-template-columns: minmax(360px, 1.45fr) minmax(280px, 0.82fr) minmax(280px, 0.82fr);
}

.seller-profile-primary {
  grid-row: span 2;
}

.seller-store-preview-card {
  display: grid;
  gap: 12px;
}

.seller-store-preview-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: var(--color-canvas-soft);
}

.seller-store-preview-icon svg {
  width: 26px;
  height: 26px;
}

.seller-payout-current {
  grid-column: 1 / -1;
}

.seller-payout-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.seller-payout-metric {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 8px 16px;
  border-right: 1px solid var(--color-border);
}

.seller-payout-metric:last-child {
  border-right: 0;
}

.seller-payout-change-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 14px;
}

.seller-payout-history .workspace-state {
  min-height: 118px;
  border: 0;
  background: transparent;
}

.seller-security-sections {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.seller-security-row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--color-border);
}

.seller-security-row-heading p,
.seller-security-row-heading h2 {
  margin: 0;
}

.seller-security-row-heading p {
  margin-top: 7px;
}

.seller-security-row .seller-password-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

.seller-security-empty {
  min-height: 96px;
  border: 0;
  background: transparent;
}

.seller-security-members {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .workspace-seller[data-active-route] .seller-page,
  .workspace-seller[data-active-route="dashboard"] .seller-dashboard-overview-grid,
  .seller-dashboard-analytics,
  .seller-dashboard-lower,
  .seller-conversation-layout,
  .workspace-seller[data-active-route="profile"] .seller-profile-layout,
  .seller-payout-change-workspace,
  .seller-security-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-profile-primary {
    grid-column: 1;
    grid-row: auto;
  }

  .seller-payout-summary,
  .seller-security-row .seller-password-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-editor-rail {
    position: static;
  }

  .workspace-seller[data-active-route="product-editor"] .seller-editor-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .workspace-seller[data-active-route="product-editor"] .seller-editor-layout > * {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
  }

  .workspace-seller[data-active-route] .seller-summary-rail,
  .workspace-seller[data-active-route="devices"] .seller-service-panel:last-child,
  .workspace-seller[data-active-route] .workspace-table-wrap,
  .workspace-seller[data-active-route] .seller-finance-layout,
  .seller-conversation-layout > .seller-summary-rail {
    position: static;
    grid-column: 1;
    grid-row: auto;
    border-left: 1px solid var(--color-border);
  }

  .workspace-seller[data-active-route="device-detail"] .seller-device-master,
  .workspace-seller[data-active-route="device-detail"] .seller-device-inspector,
  .workspace-seller[data-active-route="device-detail"] .seller-detail-grid,
  .workspace-seller[data-active-route="device-detail"] .seller-command-status,
  .workspace-seller[data-active-route="device-detail"] .seller-page > .seller-service-panel,
  .workspace-seller[data-active-route="settlement-detail"] .seller-settlement-rail,
  .workspace-seller[data-active-route="settlement-detail"] .seller-page > :not(.workspace-page-header):not(.workspace-kpis) {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .workspace-seller .workspace-main {
    padding: 14px;
  }

  .seller-device-donut,
  .workspace-seller[data-active-route="rent-preparation"] .seller-bulk-controls,
  .seller-detail-grid,
  .seller-editor-layout,
  .seller-finance-layout,
  .seller-profile-layout,
  .seller-security-layout,
  .seller-payout-summary,
  .seller-security-row .seller-password-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-order-lifecycle {
    grid-auto-flow: row;
    gap: 10px;
    padding: 14px;
  }

  .seller-order-stage {
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
  }

  .seller-order-stage::after {
    display: none;
  }
}

/* ========================================================================== */
/* Approved desktop reconstruction: seller screens 31-36                     */
/* ========================================================================== */

.workspace-seller {
  --header-height: 56px;
  grid-template-columns: 216px minmax(0, 1fr);
  background:
    radial-gradient(circle at 78% 10%, rgba(6, 82, 104, 0.12), transparent 33%),
    linear-gradient(135deg, #061118 0%, #06151d 58%, #071923 100%);
}

.workspace-seller .workspace-sidebar {
  z-index: 24;
  border-right-color: var(--interaction-border);
  background:
    linear-gradient(180deg, rgba(7, 24, 33, 0.99), rgba(5, 19, 27, 0.99)),
    var(--color-canvas-soft);
}

.workspace-seller .workspace-brand {
  position: relative;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  align-content: center;
  gap: 10px;
  padding: 0 15px 0 18px;
  border-bottom-color: var(--interaction-border);
}

.workspace-seller .workspace-brand-name {
  overflow: hidden;
  color: #56ddb5;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -1px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-seller .workspace-brand-role {
  display: none;
}

.workspace-seller .workspace-brand-menu.button {
  width: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  color: var(--color-text);
}

.workspace-seller .workspace-brand-menu.button:hover {
  border-color: var(--color-border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.workspace-seller .workspace-brand-menu.button span {
  display: none;
}

.workspace-seller .workspace-navigation {
  position: relative;
  gap: 0;
  padding: 50px 8px 20px;
}

.workspace-seller .workspace-navigation::before {
  position: absolute;
  top: 19px;
  left: 18px;
  content: "판매자 센터";
  color: #dfe8e8;
  font-size: 13px;
  font-weight: 720;
}

.workspace-seller .workspace-nav-group {
  gap: 2px;
}

.workspace-seller .workspace-nav-group + .workspace-nav-group {
  margin-top: 8px;
  padding-top: 9px;
  border-top-color: var(--interaction-border);
}

.workspace-seller .workspace-nav-group-label {
  display: none;
}

.workspace-seller .workspace-nav-link {
  position: relative;
  min-height: 40px;
  gap: 13px;
  padding: 0 12px;
  border-radius: 4px;
  color: #c2ced0;
  font-size: 13px;
  font-weight: 620;
}

.workspace-seller .workspace-nav-link .workspace-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.workspace-seller .workspace-nav-link:hover,
.workspace-seller .workspace-nav-link[aria-current="page"] {
  background: linear-gradient(90deg, rgba(46, 196, 153, 0.18), rgba(46, 196, 153, 0.1));
  color: #58deb7;
}

.workspace-seller .workspace-nav-link[aria-current="page"] {
  box-shadow: none;
}

.workspace-seller .workspace-nav-badge {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: auto;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #54ddb5;
  color: #03261c;
  font-size: 10px;
  font-weight: 900;
}

.workspace-seller .workspace-sidebar-footer {
  min-height: 74px;
  margin: 10px 9px 14px;
  padding: 13px 12px;
  grid-template-columns: 26px minmax(0, 1fr);
  border-color: var(--interaction-border);
  border-radius: 4px;
  background: rgba(6, 18, 25, 0.28);
}

.workspace-seller .workspace-sidebar-footer > .workspace-icon {
  width: 21px;
  height: 21px;
  color: #e5ecec;
}

.workspace-seller .workspace-sidebar-footer strong {
  color: #e4ebeb;
  font-size: 12px;
}

.workspace-seller .workspace-sidebar-footer span {
  color: #b7c4c6;
  font-size: 10px;
}

.workspace-seller .workspace-body {
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 105, 139, 0.09), transparent 32%),
    linear-gradient(135deg, rgba(5, 17, 24, 0.98), rgba(5, 24, 34, 0.98));
}

.workspace-seller .workspace-topbar {
  min-height: var(--header-height);
  padding: 0 22px 0 26px;
  border-bottom-color: var(--interaction-border);
  background: rgba(4, 16, 23, 0.96);
  backdrop-filter: blur(14px);
}

.workspace-seller .workspace-topbar-search {
  width: min(46vw, 640px);
  min-width: 360px;
}

.workspace-seller .workspace-topbar-search .input {
  min-height: 36px;
  border-color: var(--interaction-border);
  border-radius: 4px;
  background: rgba(6, 18, 25, 0.72);
  font-size: 12px;
}

.workspace-seller .workspace-topbar-search > .workspace-icon {
  left: auto;
  right: 12px;
  width: 17px;
  height: 17px;
  color: #ecf2f1;
}

.workspace-seller .workspace-topbar-search .input {
  padding-right: 40px;
  padding-left: 13px;
}

.workspace-seller .workspace-topbar-actions {
  flex-wrap: nowrap;
  gap: 13px;
}

.workspace-seller .workspace-topbar-alert.button {
  min-height: 34px;
  padding: 0 5px;
  border: 0;
  background: transparent;
  color: #e6ecec;
  font-size: 12px;
}

.workspace-seller .workspace-topbar-alert.button:hover {
  background: rgba(255, 255, 255, 0.035);
}

.workspace-seller .workspace-topbar-status {
  min-height: 32px;
  padding: 0 12px;
  border-color: var(--interaction-border);
  border-radius: 4px;
  background: rgba(7, 22, 30, 0.72);
  font-size: 11px;
}

.workspace-seller .workspace-topbar-status .workspace-icon {
  width: 8px;
  height: 8px;
  fill: currentColor;
}

.workspace-seller .workspace-topbar-profile {
  display: grid;
  min-height: 40px;
  grid-template-columns: 32px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 9px;
  padding: 0 0 0 14px;
  border-left: 1px solid var(--interaction-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
}

.workspace-seller .workspace-topbar-profile > .workspace-icon:first-child {
  width: 30px;
  height: 30px;
  padding: 5px;
  border: 1px solid rgba(113, 139, 147, 0.7);
  border-radius: 50%;
}

.workspace-seller .workspace-topbar-profile > .workspace-icon:last-child {
  width: 14px;
  height: 14px;
}

.workspace-seller .workspace-topbar-user {
  font-size: 12px;
  font-weight: 720;
}

.workspace-seller .workspace-topbar-meta {
  font-size: 9px;
}

.workspace-seller .workspace-main {
  width: 100%;
  max-width: none;
  gap: 0;
  margin: 0;
  padding: 20px 24px 30px;
}

.workspace-seller.workspace-sidebar-collapsed {
  grid-template-columns: 70px minmax(0, 1fr);
}

.workspace-seller.workspace-sidebar-collapsed .workspace-brand {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-inline: 10px;
}

.workspace-seller.workspace-sidebar-collapsed .workspace-brand-name,
.workspace-seller.workspace-sidebar-collapsed .workspace-navigation::before,
.workspace-seller.workspace-sidebar-collapsed .workspace-nav-label,
.workspace-seller.workspace-sidebar-collapsed .workspace-sidebar-footer div,
.workspace-seller.workspace-sidebar-collapsed .workspace-nav-badge {
  display: none;
}

.workspace-seller.workspace-sidebar-collapsed .workspace-navigation {
  padding-top: 18px;
}

.workspace-seller.workspace-sidebar-collapsed .workspace-nav-link {
  justify-content: center;
  padding-inline: 0;
}

.workspace-seller.workspace-sidebar-collapsed .workspace-sidebar-footer {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 48px;
  padding: 10px;
}

/* Shared page language ----------------------------------------------------- */

.workspace-seller[data-active-route="rent-preparation"] .seller-page,
.workspace-seller[data-active-route="market-management"] .seller-page,
.workspace-seller[data-active-route="order-allocation"] .seller-page,
.workspace-seller[data-active-route="orders"] .seller-page,
.workspace-seller[data-active-route="order-detail"] .seller-page,
.workspace-seller[data-active-route="active-rentals"] .seller-page,
.workspace-seller .seller-approved-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  max-width: none;
}

.seller-approved-page {
  min-width: 0;
  color: #eaf0ef;
}

.seller-approved-page > * {
  min-width: 0;
}

.seller-approved-header {
  display: flex;
  min-height: 30px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 1px 2px 0;
}

.seller-approved-heading-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.seller-approved-title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.seller-approved-title {
  margin: 0;
  color: #f2f6f5;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.55px;
  line-height: 1.25;
}

.seller-approved-description {
  margin: 0;
  color: #8fa2a6;
  font-size: 11px;
  line-height: 1.45;
}

.seller-approved-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seller-approved-header-actions .button {
  min-height: 36px;
  border-color: #39c79e;
  background: rgba(7, 26, 32, 0.7);
  color: #58deb7;
}

.seller-approved-header-actions .button:hover {
  background: rgba(57, 199, 158, 0.13);
}

.seller-approved-header-compact {
  align-items: center;
}

.seller-approved-header-compact .seller-approved-title {
  font-size: 21px;
}

.seller-approved-icon-button {
  display: inline-grid;
  width: 31px;
  height: 31px;
  min-width: 31px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  outline: 0;
  background: rgba(5, 18, 25, 0.66);
  color: #dfe8e8;
  cursor: pointer;
}

.seller-approved-icon-button:hover,
.seller-approved-icon-button:focus-visible {
  border-color: #4bd9b0;
  color: #4bd9b0;
}

.seller-approved-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.seller-approved-icon-button svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.7;
}

.seller-approved-stack {
  display: grid;
  min-width: 0;
  gap: 2px;
  line-height: 1.3;
}

.seller-approved-stack > strong {
  min-width: 0;
  overflow: hidden;
  color: #e7eded;
  font-size: 12px;
  font-weight: 610;
  text-overflow: ellipsis;
}

.seller-approved-stack > small {
  min-width: 0;
  overflow: hidden;
  color: #87999e;
  font-size: 10px;
  font-weight: 450;
  text-overflow: ellipsis;
}

.seller-approved-muted {
  color: #7f9297 !important;
}

.seller-approved-positive {
  color: #4bd9b0 !important;
}

.seller-approved-danger {
  color: #ff726d !important;
}

.seller-approved-amount {
  color: #f3f7f6;
  font-weight: 650;
  white-space: nowrap;
}

.seller-approved-number {
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.seller-approved-product-media,
.seller-approved-device-media {
  display: grid;
  overflow: hidden;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 48px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 145, 159, 0.22), transparent 52%),
    #0a1b24;
  color: #799096;
}

.seller-approved-product-media img,
.seller-approved-device-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-approved-device-media img {
  object-position: center;
  transform: scale(1.04);
}

.seller-approved-product-media.is-empty,
.seller-approved-device-media.is-empty {
  align-content: center;
  gap: 3px;
}

.seller-approved-product-media.is-empty span {
  font-size: 9px;
  line-height: 1;
}

.seller-approved-product-media svg,
.seller-approved-device-media svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.4;
}

.seller-approved-metrics {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.seller-approved-metric {
  display: grid;
  min-width: 0;
  min-height: 84px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  outline: 0;
  background: linear-gradient(145deg, rgba(8, 28, 38, 0.84), rgba(6, 21, 29, 0.76));
  color: #e7eeee;
  text-align: left;
}

button.seller-approved-metric {
  cursor: pointer;
}

button.seller-approved-metric:hover,
button.seller-approved-metric[aria-pressed="true"] {
  border-color: #41d1a6;
  background: linear-gradient(145deg, rgba(11, 39, 46, 0.94), rgba(7, 27, 35, 0.88));
}

.seller-approved-metric > svg {
  width: 17px;
  height: 17px;
  color: #dce7e6;
}

.seller-approved-metric-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--interaction-border);
  border-radius: 5px;
  background: rgba(4, 16, 22, 0.55);
  color: #4bd9b0;
}

.seller-approved-metric-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.55;
}

.seller-approved-metric-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.seller-approved-metric-label {
  color: #aebcbf;
  font-size: 11px;
}

.seller-approved-metric-value {
  color: #eef4f3;
  font-size: 22px;
  font-weight: 680;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.seller-approved-metric-note {
  color: #83979c;
  font-size: 10px;
}

.seller-approved-filterbar {
  display: grid;
  min-width: 0;
  grid-auto-flow: column;
  grid-auto-columns: minmax(130px, max-content);
  align-items: center;
  gap: 8px;
}

.seller-approved-filterbar > * {
  min-width: 0;
}

.seller-approved-search {
  position: relative;
  display: flex;
  min-width: 240px;
  align-items: center;
}

.seller-approved-search > svg {
  position: absolute;
  z-index: 1;
  left: 12px;
  width: 16px;
  height: 16px;
  color: #bdc9ca;
  pointer-events: none;
}

.seller-approved-search .input {
  min-height: 39px;
  padding-left: 38px;
}

.seller-approved-page .input,
.seller-approved-page .button {
  border-radius: 4px;
  font-size: 11px;
}

.seller-approved-page .input {
  min-height: 39px;
  border-color: var(--interaction-border);
  background: rgba(5, 18, 25, 0.68);
}

.seller-approved-page select.input {
  padding-right: 32px;
}

.seller-approved-page .button {
  min-height: 39px;
  padding-inline: 14px;
}

.seller-approved-page .button-secondary {
  border-color: var(--interaction-border);
  background: rgba(5, 18, 25, 0.68);
}

.seller-approved-page .button-secondary:hover {
  border-color: #4bd9b0;
  background: rgba(75, 217, 176, 0.08);
}

.seller-approved-result-meta {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0 8px;
  color: #a8b7ba;
  font-size: 11px;
}

.seller-approved-result-meta strong {
  color: #dfe8e8;
}

.seller-approved-table-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: rgba(5, 20, 28, 0.5);
}

.seller-approved-table-wrap {
  max-width: 100%;
  overflow: auto;
}

.seller-approved-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: auto;
  background: transparent;
  color: #dfe8e8;
  font-size: 11px;
}

.seller-approved-table th,
.seller-approved-table td {
  height: 46px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--interaction-border);
  text-align: left;
  vertical-align: middle;
}

.seller-approved-table th {
  height: 39px;
  background: rgba(7, 25, 34, 0.78);
  color: #a9b8bb;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}

.seller-approved-table tbody tr {
  transition: background 140ms ease, box-shadow 140ms ease;
}

.seller-approved-table tbody tr:hover {
  background: rgba(43, 124, 125, 0.08);
}

.seller-approved-table tbody tr[data-selected="true"] {
  background: rgba(31, 150, 122, 0.07);
  box-shadow: inset 0 0 0 1px rgba(75, 217, 176, 0.72);
}

.seller-approved-table input[type="checkbox"],
.seller-approved-table input[type="radio"],
.seller-preparation-selectionbar input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: #55dcb5;
}

.seller-approved-table .workspace-status {
  min-height: 24px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
}

.seller-approved-table .workspace-status .workspace-icon {
  width: 9px;
  height: 9px;
}

.seller-approved-empty-row td {
  height: 180px !important;
}

.seller-approved-empty-row .workspace-state {
  min-height: 140px;
  border: 0;
  background: transparent;
}

.seller-col-check,
.seller-col-radio,
.seller-col-expand {
  width: 44px;
  text-align: center !important;
}

.seller-col-action {
  width: 56px;
  text-align: center !important;
}

.seller-col-product {
  min-width: 180px;
}

.seller-approved-table-footer {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 14px;
  border-top: 1px solid var(--interaction-border);
  color: #9cadb0;
  font-size: 10px;
}

.seller-approved-table-footer-left,
.seller-approved-pager {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seller-approved-table-footer .seller-approved-select {
  width: auto;
  min-width: 108px;
  min-height: 32px;
}

.seller-approved-pager .seller-approved-icon-button {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.seller-approved-page-current {
  display: inline-grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #39c79e;
  border-radius: 4px;
  color: #58deb7;
}

.seller-approved-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #4bd9b0;
  cursor: pointer;
  font-size: 10px;
}

.seller-approved-text-button:disabled {
  color: #61777d;
  cursor: not-allowed;
}

/* 31. Rent preparation ----------------------------------------------------- */

.seller-rent-preparation-page .seller-approved-heading-copy,
.seller-allocation-page .seller-approved-heading-copy {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.seller-preparation-guide {
  display: grid;
  min-height: 78px;
  grid-template-columns: 75px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: rgba(7, 25, 34, 0.62);
}

.seller-preparation-guide-title {
  color: #dce6e6;
  font-size: 11px;
}

.seller-preparation-guide-steps {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(210px, 1fr) 40px minmax(210px, 1fr);
  align-items: center;
  gap: 12px;
}

.seller-preparation-guide-step {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.seller-preparation-guide-step.is-current .seller-approved-stack > strong {
  color: #4bd9b0;
}

.seller-preparation-step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #66e4bd, #40bf9b);
  color: #073329;
  font-size: 16px;
  font-weight: 850;
}

.seller-preparation-guide-step:not(.is-current) .seller-preparation-step-number {
  background: linear-gradient(145deg, #9bd9c9, #68bfa8);
}

.seller-preparation-guide-arrow {
  display: grid;
  place-items: center;
  color: #e2eaea;
}

.seller-preparation-guide-arrow svg {
  width: 18px;
  height: 18px;
}

.seller-preparation-guide > .button {
  min-height: 32px;
  background: transparent;
}

.seller-preparation-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.seller-preparation-metrics .seller-approved-metric {
  min-height: 84px;
  grid-template-columns: minmax(0, 1fr);
  padding: 12px 16px;
}

.seller-preparation-metrics .seller-approved-metric-value {
  font-size: 25px;
}

.seller-preparation-table-card {
  display: grid;
}

.seller-preparation-filters {
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(130px, 0.7fr)) auto;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  padding: 0 0 12px;
}

.seller-preparation-filters .seller-approved-search {
  min-width: 0;
}

.seller-preparation-filters .seller-approved-reset {
  justify-self: end;
}

.seller-preparation-selectionbar {
  display: grid;
  min-height: 55px;
  grid-template-columns: minmax(270px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--interaction-border);
  background: rgba(7, 25, 34, 0.74);
}

.seller-preparation-selection-summary,
.seller-preparation-bulk-actions,
.seller-preparation-selected-only {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seller-preparation-selection-summary {
  min-width: 0;
}

.seller-preparation-selection-count {
  color: #dfe8e8;
  font-size: 11px;
}

.seller-preparation-selected-only {
  margin-left: 18px;
  color: #9aabad;
  font-size: 10px;
}

.seller-preparation-bulk-actions {
  justify-content: flex-end;
  padding-left: 16px;
  border-left: 1px solid var(--interaction-border);
}

.seller-preparation-bulk-label {
  color: #b3c0c2;
  font-size: 10px;
  white-space: nowrap;
}

.seller-preparation-product-select {
  width: 180px;
}

.seller-preparation-table {
  min-width: 1080px;
}

.seller-preparation-device-cell {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 10px;
}

.seller-preparation-table tbody tr[data-selected="true"] td {
  border-top: 1px solid rgba(75, 217, 176, 0.78);
  border-bottom-color: rgba(75, 217, 176, 0.78);
}

.seller-preparation-table tbody tr[data-selected="true"] td:first-child {
  border-left: 1px solid rgba(75, 217, 176, 0.78);
}

.seller-preparation-table tbody tr[data-selected="true"] td:last-child {
  border-right: 1px solid rgba(75, 217, 176, 0.78);
}

/* 32. Market management ---------------------------------------------------- */

.seller-market-layout,
.seller-allocation-layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.seller-market-content,
.seller-allocation-content {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.seller-market-filters {
  grid-template-columns: 125px minmax(260px, 430px) 120px;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
}

.seller-market-table {
  min-width: 920px;
}

.seller-market-product-cell {
  display: flex;
  min-width: 235px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.seller-market-product-cell:focus-visible {
  outline: 1px solid #4bd9b0;
  outline-offset: -3px;
}

.seller-market-product-image {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.seller-market-product-row[data-expanded="true"] {
  background: rgba(21, 94, 84, 0.1);
  box-shadow: inset 0 0 0 1px rgba(75, 217, 176, 0.72);
}

.seller-market-product-row[data-selected="true"] td {
  border-top-color: rgba(75, 217, 176, 0.7);
  border-bottom-color: rgba(75, 217, 176, 0.7);
}

.seller-market-device-row > td {
  height: auto;
  padding: 8px;
  background: rgba(6, 20, 27, 0.92);
}

.seller-market-device-list {
  overflow: hidden;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
}

.seller-market-device-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(7, 27, 35, 0.68);
  font-size: 10px;
}

.seller-market-device-table th,
.seller-market-device-table td {
  height: 36px;
  padding: 6px 13px;
  border-bottom: 1px solid var(--interaction-border);
  text-align: left;
}

.seller-market-device-table th {
  color: #9dafb2;
  font-size: 9px;
}

.seller-market-device-table .button {
  min-height: 28px;
  padding-inline: 11px;
  font-size: 9px;
}

.seller-market-detail-panel,
.seller-allocation-detail-panel {
  position: fixed;
  z-index: 23;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: 304px;
  overflow-y: auto;
  border-left: 1px solid var(--interaction-border);
  background:
    radial-gradient(circle at 100% 0%, rgba(12, 89, 107, 0.12), transparent 28%),
    #071923;
  box-shadow: -16px 0 42px rgba(0, 0, 0, 0.18);
  scrollbar-width: thin;
}

.seller-market-page:has(.seller-market-layout.is-detail-open),
.seller-allocation-page:has(.seller-allocation-layout.is-detail-open) {
  padding-right: 304px;
}

.seller-market-detail-head,
.seller-allocation-detail-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  border-bottom: 1px solid var(--interaction-border);
  background: rgba(7, 25, 35, 0.97);
}

.seller-market-detail-head > strong,
.seller-allocation-detail-head > strong {
  font-size: 12px;
}

.seller-market-detail-head .seller-approved-icon-button,
.seller-allocation-detail-head .seller-approved-icon-button {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 0;
  background: transparent;
}

.seller-market-detail-identity,
.seller-allocation-detail-identity {
  display: grid;
  min-width: 0;
  gap: 12px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--interaction-border);
}

.seller-market-detail-identity {
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
}

.seller-market-detail-identity > .workspace-status {
  grid-column: 2;
  justify-self: start;
}

.seller-market-detail-image {
  width: 80px;
  height: 80px;
  grid-row: 1 / span 2;
  flex-basis: 80px;
}

.seller-market-detail-section,
.seller-allocation-detail-section {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--interaction-border);
}

.seller-market-detail-title,
.seller-allocation-detail-title {
  margin: 0;
  color: #e6eded;
  font-size: 11px;
}

.seller-market-detail-list,
.seller-allocation-detail-list,
.seller-order-side-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  margin: 0;
  font-size: 10px;
}

.seller-market-detail-list dt,
.seller-allocation-detail-list dt,
.seller-order-side-list dt {
  color: #91a4a8;
}

.seller-market-detail-list dd,
.seller-allocation-detail-list dd,
.seller-order-side-list dd {
  margin: 0;
  color: #dfe7e7;
  text-align: right;
}

.seller-market-description {
  margin: 0;
  color: #95a7aa;
  font-size: 10px;
  line-height: 1.65;
}

.seller-market-detail-section .seller-hardware-list,
.seller-market-detail-section .seller-detail-list {
  font-size: 10px;
}

.seller-market-detail-actions {
  display: grid;
  gap: 7px;
}

.seller-market-detail-actions .button {
  width: 100%;
  min-height: 34px;
}

.seller-market-detail-actions .button:first-child {
  border-color: #42d5ad;
  background: transparent;
  color: #4bd9b0;
}

/* 33. Order allocation ----------------------------------------------------- */

.seller-allocation-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
}

.seller-allocation-tab {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border-right: 1px solid var(--interaction-border);
  background: rgba(5, 19, 27, 0.54);
  color: #aebdc0;
  cursor: pointer;
  font-size: 10px;
}

.seller-allocation-tab:last-child {
  border-right: 0;
}

.seller-allocation-tab small {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(143, 161, 166, 0.2);
  color: #d8e1e1;
  font-size: 9px;
}

.seller-allocation-tab[aria-selected="true"] {
  box-shadow: inset 0 0 0 1px #45d3aa;
  background: rgba(51, 183, 149, 0.12);
  color: #50dcb3;
}

.seller-allocation-tab[aria-selected="true"] small {
  background: #4bd9b0;
  color: #063328;
}

.seller-allocation-filters {
  grid-template-columns: minmax(260px, 1fr) 130px 145px 135px 90px;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
}

.seller-allocation-table {
  min-width: 980px;
}

.seller-allocation-row[data-selected="true"] {
  box-shadow: inset 0 0 0 1px #4bd9b0;
}

.seller-allocation-detail-panel {
  width: 356px;
}

.seller-allocation-page:has(.seller-allocation-layout.is-detail-open) {
  padding-right: 356px;
}

.seller-allocation-detail-identity {
  gap: 13px;
}

.seller-allocation-product-block {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.seller-allocation-candidate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9px;
}

.seller-allocation-candidate-table th,
.seller-allocation-candidate-table td {
  height: 30px;
  padding: 5px 7px;
  border: 1px solid var(--interaction-border);
  text-align: center;
}

.seller-allocation-candidate-table th {
  color: #a9b8bb;
  font-weight: 600;
}

.seller-allocation-candidate-table tbody tr.is-selected {
  background: rgba(75, 217, 176, 0.08);
  box-shadow: inset 0 0 0 1px rgba(75, 217, 176, 0.5);
}

.seller-allocation-candidate-empty {
  height: 58px !important;
  color: #83979b;
}

.seller-allocation-selected-device {
  display: grid;
  min-width: 0;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: rgba(7, 26, 34, 0.66);
}

.seller-allocation-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seller-allocation-timeline li {
  position: relative;
  display: grid;
  min-height: 27px;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  color: #8da0a4;
  font-size: 9px;
}

.seller-allocation-timeline li::before {
  position: absolute;
  top: 18px;
  bottom: -9px;
  left: 5px;
  width: 1px;
  content: "";
  background: rgba(70, 102, 113, 0.7);
}

.seller-allocation-timeline li:last-child::before {
  display: none;
}

.seller-allocation-timeline-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 2px solid #71888e;
  border-radius: 50%;
  background: #071923;
}

.seller-allocation-timeline li.is-complete {
  color: #dce5e5;
}

.seller-allocation-timeline li.is-complete .seller-allocation-timeline-dot {
  border-color: #4bd9b0;
  background: #4bd9b0;
  box-shadow: 0 0 0 3px rgba(75, 217, 176, 0.08);
}

.seller-allocation-timeline time {
  color: #7f9297;
  font-size: 8px;
}

.seller-allocation-detail-actions {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 12px 14px;
  border-top: 1px solid var(--interaction-border);
  background: rgba(6, 22, 30, 0.98);
}

.seller-allocation-detail-actions .button:last-child {
  grid-column: 1 / -1;
}

/* 34. Orders --------------------------------------------------------------- */

.seller-orders-page {
  gap: 18px;
}

.seller-orders-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.seller-orders-filters {
  grid-template-columns: minmax(280px, 1.3fr) minmax(150px, 0.75fr) minmax(185px, 0.9fr) minmax(270px, 1.05fr) auto;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
}

.seller-orders-date-range,
.seller-rentals-date-range {
  display: grid;
  min-height: 39px;
  grid-template-columns: 18px minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: rgba(5, 18, 25, 0.68);
}

.seller-orders-date-range > svg,
.seller-rentals-date-range > svg {
  width: 15px;
  height: 15px;
  color: #bdc9ca;
}

.seller-orders-date-range .input,
.seller-rentals-date-range .input {
  min-height: 30px;
  padding: 0 3px;
  border: 0;
  background: transparent;
  color-scheme: dark;
}

.seller-orders-table-card {
  display: grid;
}

.seller-orders-result-meta {
  min-height: 40px;
  border-bottom: 1px solid var(--interaction-border);
}

.seller-orders-table {
  min-width: 1120px;
}

.seller-orders-table tbody tr[data-selected="true"] {
  background: rgba(75, 217, 176, 0.06);
}

/* 35. Order detail --------------------------------------------------------- */

.seller-order-detail-page {
  gap: 9px;
}

.seller-order-detail-page .seller-approved-header {
  min-height: 28px;
}

.seller-order-detail-page .seller-approved-title-row > .seller-approved-icon-button {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border: 0;
  background: transparent;
}

.seller-order-detail-identity {
  display: grid;
  min-width: 0;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  padding: 0 2px 2px;
}

.seller-order-detail-number {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  gap: 2px 10px;
}

.seller-order-detail-number > span {
  grid-column: 1 / -1;
  color: #9daeb1;
  font-size: 10px;
}

.seller-order-detail-number > strong {
  color: #edf3f2;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.seller-order-detail-number > small {
  grid-column: 1 / -1;
  color: #82969a;
  font-size: 9px;
}

.seller-order-progress {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0 10px;
  list-style: none;
}

.seller-order-progress li {
  position: relative;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 3px;
  color: #84989c;
  font-size: 9px;
  text-align: center;
}

.seller-order-progress li::after {
  position: absolute;
  z-index: 0;
  top: 14px;
  left: calc(50% + 17px);
  width: calc(100% - 34px);
  height: 1px;
  content: "";
  background: rgba(92, 119, 127, 0.75);
}

.seller-order-progress li:last-child::after {
  display: none;
}

.seller-order-progress-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #6c8288;
  border-radius: 50%;
  background: #071923;
  color: #b6c3c5;
  font-size: 12px;
}

.seller-order-progress-marker svg {
  width: 14px;
  height: 14px;
}

.seller-order-progress li.is-complete .seller-order-progress-marker {
  border-color: #92a3a6;
  color: #dce5e5;
}

.seller-order-progress li.is-current,
.seller-order-progress li.is-current strong {
  color: #4bd9b0;
}

.seller-order-progress li.is-current .seller-order-progress-marker {
  border-color: #4bd9b0;
  box-shadow: 0 0 0 3px rgba(75, 217, 176, 0.09);
  color: #4bd9b0;
}

.seller-order-progress strong {
  color: #b9c5c7;
  font-size: 10px;
  font-weight: 620;
}

.seller-order-progress small {
  overflow: hidden;
  max-width: 100%;
  color: #70868c;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-order-detail-layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  align-items: start;
  gap: 20px;
}

.seller-order-detail-main,
.seller-order-detail-rail {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.seller-order-detail-panel,
.seller-order-side-panel {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(8, 28, 38, 0.73), rgba(6, 22, 30, 0.62));
}

.seller-order-detail-panel-title,
.seller-order-side-panel h2 {
  margin: 0;
  color: #e5ecec;
  font-size: 12px;
}

.seller-order-detail-panel-head,
.seller-order-side-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.seller-order-buyer-body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.seller-order-buyer-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #889ba0;
  border-radius: 50%;
  color: #dce6e6;
}

.seller-order-buyer-icon svg {
  width: 26px;
  height: 26px;
}

.seller-order-buyer-memo {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding-top: 9px;
  border-top: 1px solid var(--interaction-border);
  color: #82969a;
  font-size: 9px;
}

.seller-order-buyer-memo strong {
  color: #c4ced0;
  font-weight: 520;
}

.seller-order-rent-product {
  display: grid;
  grid-template-columns: 72px minmax(190px, 1fr) repeat(3, minmax(90px, 0.48fr));
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
}

.seller-order-rent-products {
  display: grid;
  gap: 8px;
}

.seller-order-rent-product > * {
  min-height: 72px;
  align-content: center;
  padding: 10px 15px;
  border-right: 1px solid var(--interaction-border);
}

.seller-order-rent-product > *:last-child {
  border-right: 0;
}

.seller-order-rent-image {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.seller-order-product-copy > strong {
  font-size: 12px;
}

.seller-order-product-copy > small {
  line-height: 1.45;
  white-space: normal;
}

.seller-order-product-stat {
  align-content: center;
  justify-items: start;
}

.seller-order-product-stat > strong {
  color: #8ea1a5;
  font-size: 9px;
  font-weight: 520;
}

.seller-order-product-stat > small {
  color: #e2eaea;
  font-size: 11px;
  font-weight: 620;
}

.seller-order-product-price > small {
  color: #4bd9b0;
  font-size: 12px;
}

.seller-order-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--interaction-border);
  border-top: 0;
}

.seller-order-pricing .seller-approved-stack {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.seller-order-pricing .seller-approved-stack > strong {
  color: #91a5a9;
  font-size: 9px;
  font-weight: 520;
}

.seller-order-pricing .seller-approved-stack > small {
  color: #e4ebeb;
  font-size: 10px;
}

.seller-order-pricing .is-total > small {
  color: #4bd9b0;
  font-size: 13px;
}

.seller-order-payment-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 2px 0;
}

.seller-order-payment-meta .seller-approved-stack {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.seller-order-payment-meta .seller-approved-stack > strong {
  color: #82969a;
  font-size: 9px;
}

.seller-order-payment-meta .seller-approved-stack > small {
  color: #becacc;
  font-size: 9px;
}

.seller-order-memo-panel {
  grid-template-columns: minmax(0, 1fr);
}

.seller-order-memo-panel .button {
  min-height: 30px;
}

.seller-order-empty-copy {
  margin: 0;
  color: #84979b;
  font-size: 9px;
}

.seller-order-activity-list {
  display: grid;
  margin: 0;
  padding: 0;
  border: 1px solid var(--interaction-border);
  list-style: none;
}

.seller-order-activity-list li {
  position: relative;
  display: grid;
  min-height: 35px;
  grid-template-columns: 18px minmax(130px, 0.8fr) minmax(120px, 0.7fr) minmax(145px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-bottom: 1px solid var(--interaction-border);
  color: #83979b;
  font-size: 9px;
}

.seller-order-activity-list li:last-child {
  border-bottom: 0;
}

.seller-order-activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4bd9b0;
  box-shadow: 0 0 0 3px rgba(75, 217, 176, 0.08);
}

.seller-order-activity-list strong {
  color: #d8e2e2;
  font-size: 9px;
}

.seller-order-activity-list time {
  color: #82969a;
}

.seller-order-activity-list small {
  overflow: hidden;
  color: #91a3a6;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-order-detail-rail {
  position: sticky;
  top: calc(var(--header-height) + 12px);
}

.seller-order-side-panel {
  gap: 9px;
  padding: 13px 15px;
}

.seller-order-side-list {
  padding-top: 8px;
  border-top: 1px solid var(--interaction-border);
}

.seller-order-side-panel > .button {
  justify-self: start;
  min-height: 31px;
}

.seller-order-assigned-devices {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
}

.seller-order-assigned-device {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-bottom: 1px solid var(--interaction-border);
}

.seller-order-assigned-device:last-child {
  border-bottom: 0;
}

.seller-order-assigned-device .button {
  min-height: 28px;
  padding-inline: 8px;
  border: 0;
  background: transparent;
  font-size: 9px;
}

.seller-order-preflight-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seller-order-preflight-list li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  color: #a8b7b9;
  font-size: 9px;
}

.seller-order-preflight-list svg {
  width: 14px;
  height: 14px;
  color: #4bd9b0;
}

.seller-order-preflight-time {
  justify-self: end;
  color: #71868b;
  font-size: 8px;
}

.seller-order-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.seller-order-actions .button {
  min-width: 0;
  padding-inline: 8px;
  font-size: 9px;
}

.seller-order-actions .button:nth-child(2) {
  border-color: rgba(239, 180, 74, 0.75);
  color: #efb44a;
}

.seller-order-actions .button:nth-child(3) {
  border-color: rgba(239, 105, 105, 0.75);
  color: #ef6969;
}

/* 36. Active rentals ------------------------------------------------------- */

.seller-rentals-layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 206px;
  align-items: stretch;
  gap: 20px;
}

.seller-rentals-content {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 14px;
}

.seller-rentals-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seller-rentals-filters {
  grid-template-columns: minmax(270px, 1.15fr) minmax(330px, 1.2fr) minmax(160px, 0.7fr) auto;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
}

.seller-rentals-date-range {
  grid-template-columns: auto minmax(105px, 1fr) auto minmax(105px, 1fr);
}

.seller-rentals-date-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aebdc0;
  font-size: 10px;
  white-space: nowrap;
}

.seller-rentals-date-label svg {
  width: 14px;
  height: 14px;
}

.seller-rentals-date-separator {
  color: #82969a;
}

.seller-rentals-result-meta {
  padding: 0 2px;
}

.seller-rentals-table-card {
  display: grid;
}

.seller-rentals-table {
  min-width: 1080px;
}

.seller-rentals-id-cell strong {
  white-space: nowrap;
}

.seller-rentals-private-buyer > strong {
  color: #c7d1d2;
}

.seller-rentals-remaining {
  color: #4bd9b0;
  font-weight: 700;
  white-space: nowrap;
}

.seller-rentals-connection {
  display: grid;
  justify-items: start;
  gap: 3px;
}

.seller-rentals-connection > small {
  color: #84979b;
  font-size: 9px;
}

.seller-rentals-actions-cell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  white-space: nowrap;
}

.seller-rentals-check-button.button {
  min-height: 29px;
  padding-inline: 9px;
  border-color: rgba(75, 217, 176, 0.72);
  background: transparent;
  color: #4bd9b0;
  font-size: 9px;
}

.seller-rentals-table-footer-host:empty {
  display: none;
}

.seller-rentals-activity-rail {
  display: grid;
  min-width: 0;
  min-height: 100%;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: rgba(7, 25, 34, 0.66);
}

.seller-rentals-activity-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--interaction-border);
}

.seller-rentals-activity-head h2 {
  margin: 0;
  font-size: 11px;
}

.seller-rentals-activity-head .seller-approved-icon-button {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border: 0;
  background: transparent;
}

.seller-rentals-activity-cards {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.seller-rentals-activity-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 30px minmax(0, 1fr) 16px;
  align-items: start;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid var(--interaction-border);
  border-radius: 4px;
  background: rgba(5, 18, 25, 0.55);
  color: #dfe8e8;
  cursor: pointer;
  text-align: left;
}

.seller-rentals-activity-card:hover {
  border-color: #4bd9b0;
  background: rgba(75, 217, 176, 0.06);
}

.seller-rentals-activity-icon {
  color: #efb44a;
}

.seller-rentals-activity-card:nth-child(2) .seller-rentals-activity-icon {
  color: #58b6ff;
}

.seller-rentals-activity-icon svg,
.seller-rentals-activity-card > svg {
  width: 18px;
  height: 18px;
}

.seller-rentals-activity-copy {
  display: grid;
  gap: 5px;
}

.seller-rentals-activity-copy > span {
  color: #b7c4c6;
  font-size: 10px;
}

.seller-rentals-activity-copy > strong {
  color: #edf3f2;
  font-size: 21px;
  font-weight: 650;
}

.seller-rentals-activity-copy > small {
  color: #819499;
  font-size: 9px;
  line-height: 1.4;
}

.seller-rentals-guidance {
  display: grid;
  align-self: end;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--interaction-border);
}

.seller-rentals-guidance h3 {
  margin: 0;
  font-size: 10px;
}

.seller-rentals-guidance ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 14px;
  color: #9aacaf;
  font-size: 8px;
  line-height: 1.55;
}

.seller-rentals-guidance .button {
  width: 100%;
  min-height: 34px;
  background: transparent;
}

/* Approved desktop finishing pass ---------------------------------------- */

@media (min-width: 1181px) {
  .seller-approved-page {
    gap: 17px;
  }

  .seller-approved-title {
    font-size: 24px;
  }

  .seller-approved-description {
    font-size: 11.5px;
  }

  .seller-approved-page .input,
  .seller-approved-page .button {
    min-height: 41px;
    font-size: 11.5px;
  }

  .seller-approved-search .input {
    min-height: 41px;
  }

  .seller-approved-table {
    font-size: 11.5px;
  }

  .seller-approved-table th {
    height: 41px;
    font-size: 10.5px;
  }

  .seller-approved-table td {
    height: 50px;
  }

  .seller-approved-stack > strong {
    font-size: 12.5px;
  }

  .seller-approved-stack > small {
    font-size: 10.5px;
  }

  .seller-approved-table .workspace-status {
    min-height: 25px;
    font-size: 10.5px;
  }

  .seller-preparation-guide {
    min-height: 74px;
    padding-inline: 18px;
  }

  .seller-preparation-guide-step {
    gap: 11px;
  }

  .seller-preparation-step-number {
    width: 32px;
    height: 32px;
  }

  .seller-preparation-metrics .seller-approved-metric,
  .seller-orders-metrics .seller-approved-metric,
  .seller-rentals-metrics .seller-approved-metric {
    min-height: 88px;
    padding-block: 15px;
  }

  .seller-preparation-table td {
    height: 54px;
  }

  .seller-preparation-device-cell {
    gap: 12px;
  }

  .seller-market-product-row > td {
    height: 54px;
  }

  .seller-market-device-table th,
  .seller-market-device-table td {
    height: 39px;
    font-size: 10px;
  }

  .seller-market-detail-panel {
    width: 318px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) {
    padding-right: 318px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table-wrap {
    overflow-x: hidden;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 9.5px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table th,
  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table td {
    overflow: hidden;
    height: 47px;
    padding-inline: 5px;
    text-overflow: ellipsis;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table th {
    height: 39px;
    font-size: 9px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(1) {
    width: 38px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(2) {
    width: 205px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(3) {
    width: 78px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(4) {
    width: 62px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(n + 5):nth-child(-n + 8) {
    width: 48px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(9) {
    width: 78px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table > thead > tr > th:nth-child(10) {
    width: 72px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-product-cell {
    min-width: 0;
    gap: 7px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-product-cell .seller-approved-stack {
    min-width: 0;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-product-cell .seller-approved-stack > strong,
  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-product-cell .seller-approved-stack > small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-product-image {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table .workspace-status {
    padding-inline: 5px;
    font-size: 9px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-table .seller-col-action .button {
    min-height: 30px;
    padding-inline: 6px;
    font-size: 8.5px;
    white-space: nowrap;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-row > td {
    padding: 8px;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-table {
    table-layout: fixed;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-table th:nth-child(1) {
    width: 31%;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-table th:nth-child(2) {
    width: 15%;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-table th:nth-child(3) {
    width: 18%;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-table th:nth-child(4) {
    width: 22%;
  }

  .seller-market-page:has(.seller-market-layout.is-detail-open) .seller-market-device-table th:nth-child(5) {
    width: 14%;
  }

  .seller-market-detail-head,
  .seller-allocation-detail-head {
    min-height: 53px;
    padding-inline: 17px;
  }

  .seller-market-detail-head > strong,
  .seller-allocation-detail-head > strong {
    font-size: 12.5px;
  }

  .seller-market-detail-identity,
  .seller-allocation-detail-identity {
    padding: 19px 17px;
  }

  .seller-market-detail-section,
  .seller-allocation-detail-section {
    gap: 11px;
    padding: 17px;
  }

  .seller-market-detail-title,
  .seller-allocation-detail-title {
    font-size: 11.5px;
  }

  .seller-market-detail-list,
  .seller-allocation-detail-list {
    font-size: 10.5px;
  }

  .seller-market-description {
    font-size: 10.5px;
  }

  .seller-allocation-row {
    cursor: pointer;
  }

  .seller-allocation-row:focus-visible {
    outline: 1px solid #4bd9b0;
    outline-offset: -2px;
  }

  .seller-allocation-detail-panel {
    width: 372px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) {
    padding-right: 372px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table-wrap {
    overflow-x: hidden;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 9.5px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table th,
  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table td {
    overflow: hidden;
    height: 47px;
    padding-inline: 6px;
    text-overflow: ellipsis;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table th {
    height: 39px;
    font-size: 9px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table .seller-approved-stack > strong {
    font-size: 10px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-table .seller-approved-stack > small {
    font-size: 8.5px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-select {
    width: 36px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-order {
    width: 104px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-product {
    width: 145px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-buyer {
    width: 110px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-quantity {
    width: 42px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-period {
    width: 50px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-amount {
    width: 88px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-status {
    width: 88px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-time {
    width: 84px;
  }

  .seller-allocation-page:has(.seller-allocation-layout.is-detail-open) .seller-allocation-col-action {
    width: 42px;
  }

  .seller-allocation-candidate-table {
    font-size: 9.5px;
  }

  .seller-allocation-candidate-table th,
  .seller-allocation-candidate-table td {
    height: 32px;
    padding-inline: 5px;
  }

  .seller-allocation-timeline li {
    min-height: 30px;
    font-size: 9.5px;
  }

  .seller-allocation-timeline time {
    font-size: 8.5px;
  }

  .seller-orders-page {
    gap: 19px;
  }

  .seller-orders-table td {
    height: 51px;
  }

  .seller-order-detail-page {
    gap: 11px;
  }

  .seller-order-detail-layout {
    gap: 22px;
  }

  .seller-order-detail-main,
  .seller-order-detail-rail {
    gap: 8px;
  }

  .seller-order-detail-panel,
  .seller-order-side-panel {
    padding: 15px 17px;
  }

  .seller-order-detail-panel-title,
  .seller-order-side-panel h2 {
    font-size: 12.5px;
  }

  .seller-order-rent-product {
    grid-template-columns: 84px minmax(230px, 1fr) repeat(3, minmax(92px, 0.46fr));
    background: linear-gradient(145deg, rgba(10, 34, 43, 0.74), rgba(5, 20, 27, 0.72));
  }

  .seller-order-rent-product > * {
    min-height: 84px;
    padding-inline: 16px;
  }

  .seller-order-rent-image {
    width: 84px;
    height: 84px;
    padding: 0;
  }

  .seller-order-pricing {
    min-height: 52px;
    padding: 9px 8px;
  }

  .seller-order-pricing .seller-approved-stack {
    min-width: 0;
    gap: 10px;
    padding: 2px 13px;
  }

  .seller-order-pricing .seller-approved-stack:not(:last-child) {
    border-right: 1px solid var(--interaction-border);
  }

  .seller-order-pricing .seller-approved-stack > strong,
  .seller-order-pricing .seller-approved-stack > small {
    white-space: nowrap;
  }

  .seller-order-pricing .is-total {
    border-radius: 3px;
    background: rgba(75, 217, 176, 0.055);
  }

  .seller-order-pricing .is-total > strong {
    color: #70d8ba;
  }

  .seller-order-pricing .is-total > small {
    font-size: 14px;
    font-weight: 720;
  }

  .seller-order-payment-meta {
    padding-top: 10px;
  }

  .seller-order-activity-list li {
    min-height: 39px;
    font-size: 9.5px;
  }

  .seller-rentals-layout {
    grid-template-columns: minmax(0, 1fr) 222px;
    gap: 21px;
  }

  .seller-rentals-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 10px;
  }

  .seller-rentals-table th,
  .seller-rentals-table td {
    overflow: hidden;
    padding-inline: 7px;
    text-overflow: ellipsis;
  }

  .seller-rentals-table th:nth-child(1) { width: 10%; }
  .seller-rentals-table th:nth-child(2) { width: 10%; }
  .seller-rentals-table th:nth-child(3) { width: 15%; }
  .seller-rentals-table th:nth-child(4) { width: 10%; }
  .seller-rentals-table th:nth-child(5),
  .seller-rentals-table th:nth-child(6) { width: 9%; }
  .seller-rentals-table th:nth-child(7) { width: 7%; }
  .seller-rentals-table th:nth-child(8) { width: 10%; }
  .seller-rentals-table th:nth-child(9) { width: 9%; }
  .seller-rentals-table th:nth-child(10) { width: 11%; }

  .seller-rentals-table .seller-approved-stack > strong {
    font-size: 10.5px;
  }

  .seller-rentals-table .seller-approved-stack > small {
    font-size: 8.5px;
  }

  .seller-rentals-activity-card {
    min-height: 118px;
    padding: 17px 13px;
  }

  .seller-rentals-activity-copy > span {
    font-size: 10.5px;
  }

  .seller-rentals-activity-copy > strong {
    font-size: 22px;
  }
}

/* Desktop-width safeguards. The approved scope excludes mobile pages. ----- */

@media (max-width: 1380px) {
  .seller-approved-table th,
  .seller-approved-table td {
    padding-inline: 9px;
  }

  .seller-orders-filters,
  .seller-rentals-filters,
  .seller-preparation-filters,
  .seller-allocation-filters {
    gap: 7px;
  }

  .seller-order-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  }
}

@media (max-width: 1180px) {
  .seller-preparation-metrics,
  .seller-orders-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seller-rentals-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-preparation-filters,
  .seller-orders-filters,
  .seller-rentals-filters,
  .seller-allocation-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-preparation-selectionbar,
  .seller-order-detail-layout,
  .seller-rentals-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-order-detail-rail {
    position: static;
  }

  .seller-rentals-activity-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-rentals-activity-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Screens 25-30: namespaced approved desktop composition */
@media (min-width: 1100px) {
  .workspace-seller {
    --header-height: 55px;
    grid-template-columns: 208px minmax(0, 1fr);
    background:
      radial-gradient(circle at 58% 12%, rgba(20, 78, 96, 0.09), transparent 34%),
      #061118;
  }

  .workspace-seller .workspace-sidebar {
    position: sticky;
    z-index: 25;
    background: linear-gradient(180deg, #071820 0%, #071720 100%);
  }

  .workspace-seller .workspace-brand {
    position: relative;
    min-height: 55px;
    padding: 0 18px;
    border-bottom-color: #29404a;
  }

  .workspace-seller .workspace-brand-name {
    font-size: 22px;
    line-height: 1;
  }

  .workspace-seller .workspace-brand-role {
    position: absolute;
    top: 73px;
    left: 19px;
    display: block;
    color: #d5dfe0;
    font-size: 13px;
    font-weight: 600;
  }

  .workspace-seller .workspace-navigation {
    gap: 0;
    padding: 48px 7px 18px;
  }

  .workspace-seller .workspace-nav-group {
    gap: 1px;
  }

  .workspace-seller .workspace-nav-group + .workspace-nav-group {
    margin-top: 7px;
    padding-top: 8px;
    border-top-color: #29404a;
  }

  .workspace-seller .workspace-nav-group-label {
    display: none;
  }

  .workspace-seller .workspace-nav-link {
    min-height: 39px;
    gap: 12px;
    padding: 0 13px;
    border-radius: 4px;
    color: #d2dcde;
    font-size: 13px;
    font-weight: 550;
  }

  .workspace-seller .workspace-nav-link .workspace-icon {
    width: 18px;
    height: 18px;
    stroke-width: 1.65;
  }

  .workspace-seller .workspace-nav-link[aria-current="page"] {
    box-shadow: none;
    background: linear-gradient(90deg, rgba(41, 145, 124, 0.3), rgba(43, 122, 115, 0.22));
    color: #53ddb5;
  }

  .workspace-seller .workspace-sidebar-footer {
    min-height: 70px;
    margin: 9px 9px 35px;
    padding: 13px;
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 8px;
    border-radius: 4px;
    background: rgba(5, 17, 24, 0.28);
  }

  .workspace-seller .workspace-sidebar-footer > .workspace-icon {
    color: #d7e3e4;
  }

  .workspace-seller .workspace-sidebar-footer strong {
    font-size: 12px;
    font-weight: 500;
  }

  .workspace-seller .workspace-sidebar-footer span {
    color: #a6b6b9;
    font-size: 10px;
  }

  .workspace-seller .workspace-menu-toggle.button {
    position: fixed;
    top: 8px;
    left: 157px;
    z-index: 45;
    display: inline-flex;
    width: 39px;
    min-height: 39px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f4f7f6;
  }

  .workspace-seller .workspace-menu-toggle.button span {
    display: none;
  }

  .workspace-seller .workspace-topbar {
    min-height: 55px;
    padding: 0 23px;
    gap: 22px;
    border-bottom-color: #29404a;
    background: rgba(5, 17, 24, 0.97);
  }

  .workspace-seller .workspace-topbar-search {
    width: 578px;
    min-width: 360px;
  }

  .workspace-seller .workspace-topbar-search > .workspace-icon {
    right: 12px;
    left: auto;
    width: 17px;
    height: 17px;
    color: #e7edef;
  }

  .workspace-seller .workspace-topbar-search .input {
    min-height: 34px;
    padding: 0 40px 0 13px;
    border-color: #2d4650;
    border-radius: 5px;
    background: rgba(5, 13, 18, 0.5);
    font-size: 12px;
  }

  .workspace-seller .workspace-topbar-actions {
    flex-wrap: nowrap;
    gap: 13px;
  }

  .workspace-seller .workspace-topbar-alert.button {
    min-height: 34px;
    padding: 0 5px;
    border: 0;
    background: transparent;
    color: #ecf2f2;
    font-size: 12px;
  }

  .workspace-seller .workspace-topbar-alert.button:hover {
    color: var(--color-primary);
  }

  .workspace-seller .workspace-topbar-status {
    min-height: 30px;
    padding: 0 10px;
    border-color: #28424b;
    border-radius: 3px;
    background: rgba(7, 22, 28, 0.7);
    color: #eef4f4;
    font-size: 11px;
  }

  .workspace-seller .workspace-topbar-status .workspace-icon {
    width: 9px;
    height: 9px;
    fill: var(--color-primary);
    color: var(--color-primary);
  }

  .workspace-seller .workspace-topbar-account {
    display: grid;
    min-width: 176px;
    grid-template-columns: 31px minmax(0, 1fr) 15px;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
  }

  .workspace-seller .workspace-topbar-account > .workspace-icon:first-child {
    width: 31px;
    height: 31px;
    padding: 5px;
    border: 1px solid #3a525b;
    border-radius: 50%;
  }

  .workspace-seller .workspace-topbar-account > .workspace-icon:last-child {
    width: 14px;
    height: 14px;
  }

  .workspace-seller .workspace-topbar-account .workspace-topbar-context {
    display: grid;
    gap: 0;
    margin: 0;
  }

  .workspace-seller .workspace-topbar-account .workspace-topbar-role {
    display: none;
  }

  .workspace-seller .workspace-topbar-user {
    font-size: 12px;
    font-weight: 650;
  }

  .workspace-seller .workspace-topbar-meta {
    color: #a5b4b7;
    font-size: 10px;
  }

  .workspace-seller .workspace-main {
    width: 100%;
    max-width: none;
    gap: 0;
    margin: 0;
    padding: 24px;
    transition: padding-right 160ms ease;
  }

  .workspace-seller.seller-context-open .workspace-main {
    padding-right: calc(var(--seller-context-width, 304px) + 24px);
  }

  .workspace-seller .s25-approved-page {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
    margin: 0;
  }

  .s25-approved-page-header {
    display: flex;
    min-height: 35px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
  }

  .s25-approved-page-heading {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
  }

  .s25-approved-page-copy {
    min-width: 0;
  }

  .s25-approved-page-title {
    margin: 0;
    font-size: 24px;
    font-weight: 760;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .s25-approved-page-description {
    margin: 4px 0 0;
    color: #a1b1b4;
    font-size: 12px;
  }

  .s25-approved-back-button,
  .s25-approved-context-close {
    display: inline-grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #dbe4e5;
    cursor: pointer;
  }

  .s25-approved-back-button svg,
  .s25-approved-context-close svg {
    width: 18px;
    height: 18px;
  }

  .s25-approved-page-actions {
    display: flex;
    gap: 8px;
  }

  .s25-approved-page-actions .button {
    min-height: 38px;
  }

  .s25-approved-metric-strip.workspace-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .s25-approved-metric-card.workspace-kpi {
    position: relative;
    display: grid;
    min-height: 98px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-content: center;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid var(--interaction-border);
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(12, 32, 41, 0.86), rgba(8, 26, 35, 0.72));
    color: var(--color-text);
    text-align: left;
  }

  button.s25-approved-metric-card {
    cursor: pointer;
  }

  button.s25-approved-metric-card:hover {
    border-color: #4a7d7a;
    background: linear-gradient(135deg, rgba(14, 39, 47, 0.96), rgba(9, 31, 38, 0.9));
  }

  .s25-approved-metric-warning.workspace-kpi {
    border-color: rgba(201, 135, 17, 0.62);
  }

  .s25-approved-metric-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #31515c;
    border-radius: 5px;
    color: var(--color-primary);
  }

  .s25-approved-metric-warning .s25-approved-metric-icon {
    color: #f2aa18;
  }

  .s25-approved-metric-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.65;
  }

  .s25-approved-metric-copy {
    display: grid;
    min-width: 0;
    gap: 1px;
  }

  .s25-approved-metric-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b2c0c2;
    font-size: 11px;
  }

  .s25-approved-metric-value {
    overflow: hidden;
    font-size: 24px;
    font-weight: 670;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-metric-note {
    color: #9aabad;
    font-size: 10px;
    font-weight: 400;
  }

  .s25-approved-metric-card > svg {
    width: 17px;
    height: 17px;
  }

  .s25-approved-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #8da0a4;
  }

  .s25-approved-tone-healthy .s25-approved-status-dot,
  .s25-approved-status-dot.s25-approved-tone-healthy,
  .s25-approved-timeline-marker.s25-approved-tone-healthy {
    background: #4ddcaf;
  }

  .s25-approved-tone-warning .s25-approved-status-dot,
  .s25-approved-status-dot.s25-approved-tone-warning,
  .s25-approved-timeline-marker.s25-approved-tone-warning {
    background: #efaa19;
  }

  .s25-approved-tone-danger .s25-approved-status-dot,
  .s25-approved-status-dot.s25-approved-tone-danger,
  .s25-approved-timeline-marker.s25-approved-tone-danger {
    background: #ef555d;
  }

  .s25-approved-tone-neutral .s25-approved-status-dot,
  .s25-approved-status-dot.s25-approved-tone-neutral,
  .s25-approved-timeline-marker.s25-approved-tone-neutral {
    background: #71909a;
  }

  .s25-approved-inline-status {
    display: inline-flex;
    min-height: 23px;
    align-items: center;
    gap: 6px;
    color: #c9d4d6;
    font-size: 11px;
    white-space: nowrap;
  }

  .s25-approved-inline-status.s25-approved-tone-healthy {
    color: #50dbb2;
  }

  .s25-approved-inline-status.s25-approved-tone-warning {
    color: #efad1e;
  }

  .s25-approved-inline-status.s25-approved-tone-danger {
    color: #f3686f;
  }

  .s25-approved-surface {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--interaction-border);
    border-radius: 5px;
    background: linear-gradient(145deg, rgba(10, 29, 38, 0.9), rgba(7, 24, 32, 0.8));
  }

  .s25-approved-surface-head {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    border-bottom: 1px solid #273f49;
  }

  .s25-approved-surface-title,
  .s25-approved-surface h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
  }

  .s25-approved-table-wrap.workspace-table-wrap {
    max-width: 100%;
    overflow: auto;
    border-color: var(--interaction-border);
    border-radius: 5px;
    background: rgba(7, 25, 33, 0.76);
  }

  .s25-approved-table.workspace-table {
    min-width: 100%;
    background: transparent;
    font-size: 11px;
  }

  .s25-approved-table.workspace-table th,
  .s25-approved-table.workspace-table td {
    height: 43px;
    padding: 7px 12px;
    border-bottom-color: #263f48;
  }

  .s25-approved-table.workspace-table th {
    background: rgba(7, 24, 32, 0.9);
    color: #9eb0b3;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
  }

  .s25-approved-table.workspace-table tbody tr:hover {
    background: rgba(28, 74, 79, 0.16);
  }

  .s25-approved-row-highlight {
    outline: 1px solid #3ee2a9;
    outline-offset: -1px;
    background: rgba(27, 95, 84, 0.18) !important;
  }

  .s25-approved-pagination {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    border: 1px solid var(--interaction-border);
    border-top: 0;
    color: #aab9bc;
    font-size: 11px;
  }

  .s25-approved-pagination-controls {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .s25-approved-pagination-controls .button {
    width: 34px;
    min-height: 34px;
    padding: 0;
    font-size: 0;
  }

  .s25-approved-page-current {
    color: var(--color-primary) !important;
    font-size: 11px !important;
  }

  .s25-approved-page-size {
    min-width: 94px;
    padding: 7px 10px;
    border: 1px solid #2a434d;
    border-radius: 4px;
    color: #a7b6b8;
  }

  .s25-approved-context-panel.seller-summary-rail {
    position: fixed !important;
    top: 55px !important;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    width: var(--seller-context-width, 304px);
    min-width: 0;
    grid-template-rows: 49px minmax(0, 1fr) auto;
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-left: 1px solid var(--interaction-border);
    background: linear-gradient(180deg, #0a202a, #081b24);
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.18);
  }

  .s25-approved-context-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 1px solid #354d56;
  }

  .s25-approved-context-title {
    margin: 0;
    font-size: 14px;
  }

  .s25-approved-context-body {
    min-width: 0;
    padding: 15px;
    overflow-y: auto;
  }

  .s25-approved-context-footer {
    display: grid;
    gap: 8px;
    padding: 13px 15px 32px;
    border-top: 1px solid var(--interaction-border);
  }

  .s25-approved-context-footer .button {
    width: 100%;
    min-height: 40px;
  }

  .s25-approved-context-section.seller-rail-section {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 13px 0;
    border-top: 1px solid var(--interaction-border);
  }

  .s25-approved-context-section:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .s25-approved-context-section-title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
  }

  .s25-approved-info-grid {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(80px, 0.42fr) minmax(0, 0.58fr);
    gap: 10px 12px;
    margin: 0;
    font-size: 11px;
  }

  .s25-approved-info-grid dt,
  .s25-approved-info-grid dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
  }

  .s25-approved-info-grid dt {
    color: #9bafb2;
  }

  .s25-approved-info-grid dd {
    color: #d8e0e1;
    text-align: right;
  }

  .s25-approved-context-identity {
    display: grid;
    gap: 4px;
    padding: 5px 0 13px;
  }

  .s25-approved-context-identity strong {
    font-size: 15px;
  }

  .s25-approved-context-identity small {
    color: #93a7aa;
    font-size: 10px;
  }

  .s25-approved-timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .s25-approved-timeline li {
    position: relative;
    display: grid;
    min-height: 49px;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    color: #a8b7ba;
    font-size: 11px;
  }

  .s25-approved-timeline li::after {
    position: absolute;
    top: 16px;
    bottom: -2px;
    left: 6px;
    width: 1px;
    content: "";
    background: #3a525a;
  }

  .s25-approved-timeline li:last-child::after {
    display: none;
  }

  .s25-approved-timeline-marker {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin-top: 2px;
    border: 2px solid #789097;
    border-radius: 50%;
    background: #0a202a;
  }

  .s25-approved-timeline li.is-complete .s25-approved-timeline-marker {
    border-color: #4ddcaf;
    background: #4ddcaf;
  }

  .s25-approved-timeline li.is-current {
    color: #f0b528;
  }

  .s25-approved-timeline li.is-current .s25-approved-timeline-marker {
    border-color: #f0b528;
  }

  .s25-approved-context-product {
    display: grid;
    grid-template-columns: 67px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .s25-approved-context-product-image {
    width: 67px;
    height: 67px;
    object-fit: cover;
    border: 1px solid #3d5259;
    border-radius: 3px;
  }

  .s25-approved-context-product > div {
    display: grid;
    gap: 3px;
  }

  .s25-approved-context-product span {
    color: #9eb0b3;
    font-size: 10px;
  }

  .s25-approved-image-placeholder {
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 6px;
    border: 1px solid #314a53;
    background: #0a171d;
    color: #7e9499;
    font-size: 10px;
  }

  .s25-approved-image-placeholder svg {
    width: 24px;
    height: 24px;
  }

  /* Dashboard */
  .s25-approved-dashboard-analytics.seller-dashboard-analytics {
    display: grid;
    grid-template-columns: minmax(290px, 1.08fr) minmax(255px, 0.98fr) minmax(290px, 1.04fr);
    gap: 10px;
  }

  .s25-approved-dashboard-analytics .s25-approved-surface {
    min-height: 296px;
  }

  .s25-approved-priority-list {
    display: grid;
  }

  .s25-approved-priority-item {
    display: grid;
    min-height: 66px;
    grid-template-columns: auto minmax(0, 1fr) auto 14px;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border-bottom: 1px solid #263f48;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
  }

  .s25-approved-priority-item:hover {
    background: rgba(29, 72, 76, 0.16);
  }

  .s25-approved-priority-kind {
    min-width: 48px;
    padding: 4px 7px;
    border: 1px solid #2b8fc2;
    border-radius: 3px;
    color: #56c5ff;
    font-size: 10px;
    text-align: center;
  }

  .s25-approved-priority-warning {
    border-color: #b5780d;
    color: #efae20;
  }

  .s25-approved-priority-info {
    border-color: #168d9b;
    color: #4ed3df;
  }

  .s25-approved-priority-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .s25-approved-priority-copy strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-priority-copy small,
  .s25-approved-priority-time {
    color: #95a9ac;
    font-size: 9px;
  }

  .s25-approved-device-chart {
    display: grid;
    min-height: 235px;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px;
  }

  .s25-approved-donut {
    position: relative;
    display: grid;
    width: 142px;
    height: 142px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
      #4bd9b0 0 var(--s25-approved-online),
      #efb44a var(--s25-approved-online) var(--s25-approved-stale),
      #e9585f var(--s25-approved-stale) 100%
    );
  }

  .s25-approved-donut::after {
    position: absolute;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    content: "";
    background: #091c24;
    box-shadow: inset 0 0 0 1px #29434c;
  }

  .s25-approved-donut-center {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
  }

  .s25-approved-donut-center strong {
    font-size: 23px;
  }

  .s25-approved-donut-center span {
    color: #a5b5b8;
    font-size: 10px;
  }

  .s25-approved-chart-legend {
    display: grid;
    gap: 13px;
    margin: 0;
  }

  .s25-approved-chart-legend > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2px 10px;
  }

  .s25-approved-chart-legend dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #b5c2c4;
    font-size: 10px;
  }

  .s25-approved-chart-legend dd,
  .s25-approved-chart-legend small {
    margin: 0;
    text-align: right;
  }

  .s25-approved-chart-legend dd {
    font-size: 14px;
  }

  .s25-approved-chart-legend small {
    grid-column: 1 / -1;
    color: #93a5a8;
    font-size: 9px;
  }

  .s25-approved-revenue-chart {
    padding: 9px 11px 0;
  }

  .s25-approved-line-chart {
    display: block;
    width: 100%;
    height: 158px;
    overflow: visible;
  }

  .s25-approved-chart-gridline {
    stroke: #29434c;
    stroke-dasharray: 3 3;
    stroke-width: 1;
  }

  .s25-approved-chart-line {
    fill: none;
    stroke: #4bd9b0;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
  }

  .s25-approved-chart-point {
    fill: #4bd9b0;
  }

  .s25-approved-chart-axis {
    display: flex;
    justify-content: space-between;
    padding: 0 8px 7px 35px;
    color: #82979b;
    font-size: 9px;
  }

  .s25-approved-chart-summary {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    margin: 0 -11px;
    padding: 0 12px;
    border-top: 1px solid var(--interaction-border);
    color: #9eafb2;
    font-size: 10px;
  }

  .s25-approved-chart-summary strong {
    color: #f2f6f6;
    font-size: 13px;
  }

  .s25-approved-recent-orders .s25-approved-table-wrap {
    border: 0;
    border-radius: 0;
  }

  .s25-approved-recent-orders .s25-approved-table th,
  .s25-approved-recent-orders .s25-approved-table td {
    height: 48px;
  }

  .s25-approved-table-product-copy,
  .s25-approved-price-stack {
    display: grid;
    gap: 1px;
  }

  .s25-approved-table-product-copy strong,
  .s25-approved-price-stack strong {
    font-size: 11px;
    font-weight: 580;
  }

  .s25-approved-table-product-copy small,
  .s25-approved-price-stack small {
    color: #8fa4a8;
    font-size: 9px;
  }

  .s25-approved-surface-link {
    display: flex;
    width: 100%;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-top: 1px solid var(--interaction-border);
    background: transparent;
    color: #adbcc0;
    cursor: pointer;
    font-size: 10px;
  }

  .s25-approved-surface-link svg {
    width: 14px;
    height: 14px;
  }

  /* Device list */
  .s25-approved-filter-panel {
    display: grid;
    gap: 13px 22px;
    padding: 14px 15px;
    border: 1px solid var(--interaction-border);
    border-radius: 5px;
    background: rgba(9, 29, 38, 0.7);
  }

  .s25-approved-device-filters {
    grid-template-columns: 1.04fr 0.95fr 1fr;
  }

  .s25-approved-filter-field {
    display: grid;
    gap: 5px;
    color: #a6b6b9;
    font-size: 10px;
  }

  .s25-approved-filter-field .input {
    min-height: 31px;
    font-size: 11px;
  }

  .s25-approved-filter-actions {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 8px;
  }

  .s25-approved-filter-actions .button {
    min-height: 31px;
    padding: 0 18px;
    font-size: 11px;
  }

  .s25-approved-bulk-toolbar {
    display: flex;
    min-height: 47px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--interaction-border);
    border-radius: 5px 5px 0 0;
    background: rgba(9, 29, 38, 0.78);
  }

  .s25-approved-bulk-toolbar .button {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .s25-approved-selection-icon {
    display: inline-grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 3px;
    background: var(--color-primary);
    color: #062019;
  }

  .s25-approved-selection-icon svg {
    width: 12px;
    height: 12px;
  }

  .s25-approved-selected-count {
    min-width: 65px;
    font-size: 10px;
  }

  .s25-approved-devices-page .s25-approved-device-table-host .s25-approved-table-wrap {
    border-radius: 0;
  }

  .s25-approved-devices-page .s25-approved-device-table-host + div .s25-approved-pagination {
    border-radius: 0 0 5px 5px;
  }

  .s25-approved-devices-page .s25-approved-table {
    min-width: 1160px;
  }

  .s25-approved-device-name {
    font-weight: 560;
    white-space: nowrap;
  }

  .s25-approved-product-link {
    color: var(--color-primary);
  }

  .s25-approved-last-seen {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }

  .s25-approved-registration-content {
    display: grid;
    gap: 15px;
  }

  .s25-approved-registration-secret {
    display: grid;
    gap: 7px;
    padding: 13px;
    border: 1px solid var(--interaction-border);
    background: #071820;
  }

  .s25-approved-registration-secret span {
    color: #9eb0b3;
    font-size: 10px;
  }

  .s25-approved-registration-secret code {
    overflow-wrap: anywhere;
    color: #55dfb6;
    font-size: 12px;
  }

  .s25-approved-context-inline-actions {
    display: grid;
    gap: 8px;
  }

  /* Device detail */
  .workspace-seller[data-active-route="device-detail"] .workspace-main {
    height: calc(100vh - 55px);
    padding: 0;
    overflow: hidden;
  }

  .workspace-seller[data-active-route="device-detail"] .s25-approved-device-detail-page {
    height: 100%;
    grid-template-columns: minmax(560px, 47.7%) minmax(0, 52.3%) !important;
    gap: 0;
  }

  .workspace-seller[data-active-route="device-detail"] .s25-approved-device-master,
  .workspace-seller[data-active-route="device-detail"] .s25-approved-device-inspector {
    position: static;
    min-height: 0;
    grid-row: auto;
  }

  .s25-approved-device-master {
    display: grid;
    min-width: 0;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 0 !important;
    border-right: 1px solid #35505a !important;
    background: rgba(6, 20, 27, 0.8) !important;
  }

  .s25-approved-device-master-head {
    display: grid;
    gap: 15px;
    padding: 27px 21px 17px;
    border-bottom: 1px solid var(--interaction-border);
  }

  .s25-approved-device-master-title {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .s25-approved-device-master-title h1 {
    margin: 0;
    color: #a6b3b6;
    font-size: 20px;
  }

  .s25-approved-device-master-title svg {
    width: 14px;
    height: 14px;
    color: #82979b;
  }

  .s25-approved-device-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .s25-approved-device-tab {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid var(--interaction-border);
    border-radius: 3px;
    background: transparent;
    color: #7e9297;
    cursor: pointer;
    font-size: 10px;
  }

  .s25-approved-device-tab[data-active="true"] {
    border-color: #2b856e;
    color: #4ed9af;
  }

  .s25-approved-device-tab span {
    color: #8ea2a6;
  }

  .s25-approved-device-master-filters {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) 93px 118px 92px;
    gap: 8px;
  }

  .s25-approved-device-master-filters .input,
  .s25-approved-device-master-filters .button {
    min-height: 31px;
    font-size: 10px;
  }

  .s25-approved-device-master-table {
    min-height: 0;
    overflow-y: auto;
  }

  .s25-approved-device-master-table .s25-approved-table-wrap {
    border: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .s25-approved-device-master-table .s25-approved-table {
    min-width: 610px;
  }

  .s25-approved-device-master-table .s25-approved-table th,
  .s25-approved-device-master-table .s25-approved-table td {
    height: 64px;
    padding: 8px 13px;
  }

  .s25-approved-device-master-table .s25-approved-pagination {
    border-right: 0;
    border-left: 0;
  }

  .s25-approved-device-master-name {
    display: grid;
    gap: 2px;
  }

  .s25-approved-device-master-name strong {
    font-size: 11px;
    font-weight: 520;
  }

  .s25-approved-device-master-name small {
    overflow: hidden;
    max-width: 165px;
    color: #84999d;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-device-inspector.seller-device-inspector {
    display: block !important;
    min-width: 0;
    padding: 0 !important;
    overflow-y: auto;
    border: 0 !important;
    background: rgba(7, 25, 33, 0.72) !important;
  }

  .s25-approved-device-inspector-head {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 1px solid var(--interaction-border);
    background: #091e27;
  }

  .s25-approved-device-inspector-head h2 {
    margin: 0;
    font-size: 14px;
  }

  /* 두 칸의 바닥값 합이 260 + 380 + 여백 48 = 688px 인데 인스펙터 폭은 644px 입니다.
     그래서 1440 화면에서도 통계 블록이 28px 삐져나가 가로 스크롤이 생겼습니다.
     안쪽 정보 그리드가 이미 repeat(3, minmax(0,1fr)) 라 더 줄어들 수 있으므로
     바닥값만 낮춰 실제 폭에 맞춥니다(220 + 280 + 48 = 548px). */
  .s25-approved-device-identity-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.4fr);
    align-items: center;
    gap: 16px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--interaction-border);
  }

  .s25-approved-device-name-row {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .s25-approved-device-name-row strong {
    font-size: 15px;
  }

  .s25-approved-device-identity-bar > div > span {
    color: #a5b5b8;
    font-size: 10px;
  }

  .s25-approved-device-identity-stats .s25-approved-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 14px;
  }

  .s25-approved-device-identity-stats .s25-approved-info-grid dt,
  .s25-approved-device-identity-stats .s25-approved-info-grid dd {
    text-align: left;
  }

  .s25-approved-device-inspector > .seller-command-status {
    margin: 10px 16px 0;
  }

  .s25-approved-device-inspector > .s25-approved-context-section {
    margin: 0 16px;
    padding: 13px 10px;
    border: 1px solid var(--interaction-border);
    border-top: 0;
  }

  .s25-approved-device-inspector > .s25-approved-context-section:first-of-type {
    margin-top: 13px;
    border-top: 1px solid var(--interaction-border);
  }

  .s25-approved-device-inspector .s25-approved-info-grid {
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .s25-approved-device-inspector .s25-approved-info-grid dd {
    text-align: left;
  }

  .s25-approved-device-management-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .s25-approved-device-management-actions .button {
    min-height: 31px;
    padding: 0 8px;
    font-size: 10px;
  }

  .s25-approved-activity-timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .s25-approved-activity-timeline li {
    position: relative;
    display: grid;
    min-height: 47px;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
  }

  .s25-approved-activity-timeline li::after {
    position: absolute;
    top: 12px;
    bottom: -3px;
    left: 4px;
    width: 1px;
    content: "";
    background: #39515a;
  }

  .s25-approved-activity-timeline li:last-child::after {
    display: none;
  }

  .s25-approved-activity-timeline .s25-approved-timeline-marker {
    width: 9px;
    height: 9px;
    margin: 2px 0 0;
    border: 0;
  }

  .s25-approved-activity-timeline li > div {
    display: grid;
    gap: 2px;
  }

  .s25-approved-activity-timeline strong {
    font-size: 10px;
  }

  .s25-approved-activity-timeline small,
  .s25-approved-activity-timeline time {
    color: #889da1;
    font-size: 9px;
  }

  .s25-approved-device-deregister {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
  }

  .s25-approved-device-danger-section {
    margin-bottom: 20px !important;
  }

  /* Approval */
  .s25-approved-approval-tabs {
    display: flex;
    min-height: 54px;
    align-items: end;
    gap: 5px;
    border-bottom: 1px solid var(--interaction-border);
  }

  .s25-approved-approval-tab {
    min-width: 118px;
    min-height: 46px;
    padding: 0 13px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #a4b4b7;
    cursor: pointer;
    font-size: 12px;
  }

  .s25-approved-approval-tab[data-active="true"] {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
  }

  .s25-approved-approval-page > .button {
    width: max-content;
    min-height: 32px;
    font-size: 10px;
  }

  .s25-approved-approval-table-host .s25-approved-table {
    min-width: 980px;
  }

  .s25-approved-approval-table-host .s25-approved-table th,
  .s25-approved-approval-table-host .s25-approved-table td {
    height: 62px;
  }

  .s25-approved-fingerprint-summary,
  .s25-approved-approval-device-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .s25-approved-fingerprint-icon {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--interaction-border);
    border-radius: 4px;
    color: #cbd5d7;
  }

  .s25-approved-fingerprint-icon svg {
    width: 22px;
    height: 22px;
  }

  .s25-approved-fingerprint-summary > div,
  .s25-approved-approval-device-card > div {
    display: grid;
    min-width: 0;
    gap: 1px;
  }

  .s25-approved-fingerprint-summary strong,
  .s25-approved-approval-device-card strong {
    font-size: 11px;
  }

  .s25-approved-fingerprint-summary small,
  .s25-approved-approval-device-card span,
  .s25-approved-approval-device-card small {
    color: #91a5a9;
    font-size: 9px;
  }

  .s25-approved-approval-detail {
    display: grid;
    gap: 0;
  }

  .s25-approved-approval-device-card {
    padding: 0 0 14px;
  }

  .s25-approved-approval-readonly-form {
    display: grid;
    gap: 11px;
  }

  .s25-approved-approval-readonly-form .input {
    min-height: 34px;
    font-size: 11px;
  }

  .s25-approved-approval-readonly-form textarea.input {
    min-height: 65px;
  }

  .s25-approved-lookup-card {
    display: grid;
    gap: 10px;
    padding: 11px;
    border: 1px solid var(--interaction-border);
    border-radius: 4px;
    background: #071a22;
  }

  .s25-approved-lookup-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .s25-approved-lookup-card p {
    margin: 0;
    font-size: 10px;
  }

  .s25-approved-contract-note {
    margin: 12px 0 0;
    padding: 9px 10px;
    border: 1px solid rgba(239, 180, 74, 0.35);
    color: #d6b974;
    font-size: 9px;
    line-height: 1.6;
  }

  /* Products */
  .s25-approved-product-presets {
    display: grid;
    gap: 9px;
    padding: 10px;
    border: 1px solid var(--interaction-border);
    border-radius: 5px;
    background: rgba(9, 29, 38, 0.7);
  }

  .s25-approved-product-presets > h2 {
    margin: 0;
    font-size: 12px;
  }

  .s25-approved-product-presets > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .s25-approved-preset-card {
    display: grid;
    min-height: 55px;
    align-content: center;
    gap: 3px;
    padding: 8px 14px;
    border: 1px solid var(--interaction-border);
    border-radius: 4px;
    background: rgba(8, 26, 34, 0.76);
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
  }

  .s25-approved-preset-card:hover {
    border-color: #4d8a7d;
  }

  .s25-approved-preset-card strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-preset-card small {
    overflow: hidden;
    color: #8fa4a8;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-product-filters {
    display: flex;
    gap: 9px;
  }

  .s25-approved-product-filters > select {
    width: 128px;
    min-height: 34px;
    font-size: 10px;
  }

  .s25-approved-product-search {
    position: relative;
    width: 260px;
  }

  .s25-approved-product-search .input {
    min-height: 34px;
    padding-right: 36px;
    font-size: 10px;
  }

  .s25-approved-product-search svg {
    position: absolute;
    top: 8px;
    right: 11px;
    width: 17px;
    height: 17px;
  }

  .s25-approved-product-table-host .s25-approved-table {
    min-width: 1020px;
  }

  .s25-approved-product-table-host .s25-approved-table th,
  .s25-approved-product-table-host .s25-approved-table td {
    height: 67px;
  }

  .s25-approved-product-cell {
    display: grid;
    min-width: 210px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .s25-approved-product-thumb.seller-product-table-image {
    width: 52px;
    height: 48px;
    border-radius: 3px;
  }

  .s25-approved-product-cell > div {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .s25-approved-product-cell strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-product-cell small {
    color: #8fa4a8;
    font-size: 9px;
  }

  .s25-approved-spec-chips {
    display: flex;
    min-width: 230px;
    flex-wrap: wrap;
    gap: 5px;
  }

  .s25-approved-spec-chip {
    display: inline-block;
    max-width: 115px;
    overflow: hidden;
    padding: 3px 6px;
    border: 1px solid #2d668d;
    border-radius: 3px;
    color: #54bff1;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .s25-approved-spec-green {
    border-color: #247a5d;
    color: #4bdbac;
  }

  .s25-approved-spec-amber {
    border-color: #93700e;
    color: #f0bd26;
  }

  .s25-approved-spec-violet {
    border-color: #66518e;
    color: #b69be7;
  }

  .s25-approved-product-detail-hero {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
  }

  .s25-approved-product-detail-image {
    width: 104px;
    height: 104px;
    object-fit: cover;
    border: 1px solid var(--interaction-border);
    border-radius: 4px;
  }

  .s25-approved-product-detail-hero > div {
    display: grid;
    gap: 6px;
  }

  .s25-approved-product-detail-hero strong {
    font-size: 14px;
  }

  .s25-approved-product-detail-hero small {
    color: #94a8ab;
    font-size: 9px;
  }

  .s25-approved-product-detail-price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2px 8px;
    padding: 18px 0;
    border-top: 1px solid var(--interaction-border);
    border-bottom: 1px solid var(--interaction-border);
  }

  .s25-approved-product-detail-price span {
    color: #a2b2b5;
    font-size: 10px;
  }

  .s25-approved-product-detail-price strong {
    color: #4bd9b0;
    font-size: 23px;
  }

  .s25-approved-product-detail-price small {
    grid-column: 2;
    color: #93a6aa;
    font-size: 9px;
    text-align: right;
  }

  /* Product editor */
  .workspace-seller[data-active-route="product-editor"] .workspace-main {
    padding-bottom: 26px;
  }

  .workspace-seller[data-active-route="product-editor"] .s25-approved-product-editor-page {
    gap: 14px;
  }

  .s25-approved-editor-layout.seller-editor-layout {
    display: grid;
    grid-template-columns: minmax(620px, 1.65fr) minmax(350px, 1fr) !important;
    gap: 26px;
    align-items: start;
  }

  .s25-approved-product-editor-form {
    display: grid;
    min-width: 0;
    gap: 0;
    padding: 0 13px 0;
    border: 1px solid var(--interaction-border);
    border-radius: 5px;
    background: rgba(8, 27, 35, 0.72);
  }

  .s25-approved-editor-section {
    display: grid;
    gap: 12px;
    padding: 17px 7px;
    border-bottom: 1px solid #2d4650;
  }

  .s25-approved-editor-section h2 {
    margin: 0;
    font-size: 14px;
  }

  .s25-approved-editor-section-head {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .s25-approved-editor-section-head small {
    color: #7fd9bc;
    font-size: 9px;
  }

  .s25-approved-editor-field {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .s25-approved-editor-label {
    color: #c1ccce;
    font-size: 11px;
  }

  .s25-approved-editor-field .input {
    min-height: 34px;
    font-size: 11px;
  }

  .s25-approved-editor-field textarea.input {
    min-height: 68px;
    padding-top: 9px;
    resize: vertical;
  }

  .s25-approved-editor-count {
    position: absolute;
    right: 10px;
    bottom: 7px;
    color: #899da1;
    font-size: 9px;
  }

  .s25-approved-editor-hardware-rows {
    display: grid;
    gap: 9px;
  }

  .s25-approved-editor-hardware-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
    gap: 20px;
    align-items: center;
  }

  .s25-approved-editor-selected-spec {
    display: grid;
    gap: 2px;
    padding: 0 0 5px 10px;
    border-bottom: 1px solid var(--interaction-border);
  }

  .s25-approved-editor-selected-spec span,
  .s25-approved-editor-selected-spec small {
    color: #8fa3a7;
    font-size: 9px;
  }

  .s25-approved-editor-selected-spec strong {
    color: #b9c6c8;
    font-size: 10px;
    font-weight: 500;
  }

  .s25-approved-editor-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .s25-approved-editor-pricing-grid .s25-approved-editor-field {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .s25-approved-editor-image-row {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .s25-approved-editor-image-thumb {
    width: 88px;
    height: 78px;
    object-fit: cover;
    border: 1px solid #526168;
    border-radius: 4px;
  }

  .s25-approved-editor-image-row > div {
    display: grid;
    gap: 8px;
  }

  .s25-approved-editor-image-row small {
    color: #8ea2a6;
    font-size: 9px;
  }

  .s25-approved-editor-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 15px 6px;
  }

  .s25-approved-editor-actions .button {
    min-width: 137px;
    min-height: 38px;
  }

  .s25-approved-product-editor-form > .seller-command-status {
    margin: 12px 6px 0;
  }

  .s25-approved-editor-rail.seller-editor-rail {
    position: sticky;
    top: 70px;
    display: block;
  }

  .s25-approved-live-preview.seller-product-preview {
    display: grid;
    gap: 6px;
    padding: 16px 20px 20px;
    border-radius: 5px;
    background: rgba(8, 27, 35, 0.72);
  }

  .s25-approved-live-preview > h2 {
    margin: 0;
    font-size: 14px;
  }

  .s25-approved-live-preview > p {
    margin: 0 0 13px;
    font-size: 10px;
  }

  .s25-approved-market-card {
    overflow: hidden;
    border: 1px solid var(--interaction-border);
    border-radius: 5px;
    background: #091b23;
  }

  .s25-approved-market-image.seller-product-preview-image {
    width: 100%;
    aspect-ratio: 1.7 / 1;
    object-fit: contain;
    border: 0;
    border-bottom: 1px solid var(--interaction-border);
    background: radial-gradient(circle at 50% 50%, #1c252a, #151a1d);
  }

  .s25-approved-market-body {
    display: grid;
    gap: 10px;
    padding: 17px 20px 22px;
  }

  .s25-approved-market-body h2 {
    margin: 0;
    font-size: 18px;
  }

  .s25-approved-use-case-chip {
    width: max-content;
    padding: 3px 8px;
    border: 1px solid #28785f;
    border-radius: 3px;
    color: #50d7ad;
    font-size: 9px;
  }

  .s25-approved-market-body p {
    min-height: 36px;
    margin: 0;
    color: #9eafb2;
    font-size: 11px;
    line-height: 1.6;
  }

  .s25-approved-market-spec-list {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 5px 0;
    padding: 17px 0;
    border-top: 1px solid var(--interaction-border);
    border-bottom: 1px solid var(--interaction-border);
    font-size: 10px;
  }

  .s25-approved-market-spec-list dt,
  .s25-approved-market-spec-list dd {
    margin: 0;
  }

  .s25-approved-market-spec-list dt {
    color: #c3cdcf;
  }

  .s25-approved-market-spec-list dd {
    color: #a6b5b8;
  }

  .s25-approved-market-price-label {
    color: #a4b4b7;
    font-size: 10px;
  }

  .s25-approved-market-price {
    color: #4bd9b0;
    font-size: 24px;
  }

  .s25-approved-market-body > small {
    color: #91a5a9;
    font-size: 9px;
  }
}

/* Screens 43-44 approved desktop settings */
.seller-settings-page {
  grid-template-columns: minmax(0, 1fr);
}

.seller-settings-tab-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.seller-panel-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.seller-panel-heading-copy {
  display: grid;
  gap: 4px;
}

.seller-panel-heading-copy > * {
  margin: 0;
}

.seller-payout-current-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(83, 179, 255, 0.28);
  border-radius: 3px;
  background: rgba(21, 111, 164, 0.12);
  color: var(--color-text-muted);
  font-size: 10px;
}

.seller-payout-current-notice svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #53b3ff;
}

.seller-payout-account-number {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.seller-payout-copy.button {
  min-height: 23px;
  height: 23px;
  padding-inline: 6px;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 9px;
}

.seller-payout-copy.button svg {
  width: 12px;
  height: 12px;
}

.seller-payout-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
}

.seller-payout-form .seller-form-field-wide,
.seller-payout-verification,
.seller-payout-form-actions {
  grid-column: 1 / -1;
}

.seller-payout-form .seller-textarea {
  min-height: 58px;
  resize: vertical;
}

.seller-form-help,
.seller-form-counter {
  margin-top: 5px;
  color: var(--color-text-subtle);
  font-size: 9px;
}

.seller-form-counter {
  justify-self: end;
}

.seller-payout-verification {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-canvas-soft);
}

.seller-payout-verification p,
.seller-payout-verification span {
  margin: 0;
}

.seller-payout-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.seller-payout-guidance {
  display: grid;
  gap: 13px;
}

.seller-payout-guidance-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
}

.seller-payout-guidance-icon {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  color: var(--color-primary);
}

.seller-payout-guidance-icon svg {
  width: 14px;
  height: 14px;
}

.seller-payout-guidance-item strong {
  font-size: 11px;
}

.seller-payout-guidance-item p {
  margin: 3px 0 0;
  font-size: 9px;
  line-height: 1.45;
}

.seller-payout-history-table {
  margin-top: 10px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.seller-payout-history-empty td {
  height: 58px !important;
  color: var(--color-text-subtle);
  text-align: center;
}

.seller-security-inline-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.seller-security-inline-summary > strong {
  font-size: 11px;
}

.seller-notification-settings {
  display: grid;
  gap: 8px;
}

.seller-notification-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.seller-notification-item strong {
  font-size: 10px;
}

.seller-notification-item p {
  margin: 2px 0 0;
  font-size: 9px;
}

.seller-switch {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 18px;
}

.seller-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seller-switch-track {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-border-strong);
  opacity: 0.72;
}

.seller-switch-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-text-muted);
  content: "";
}

.seller-security-utility-content {
  display: grid;
  gap: 8px;
}

.seller-security-contract-note {
  margin: 3px 0 0;
  font-size: 9px;
}

.seller-button-danger-outline.button {
  border-color: rgba(239, 105, 105, 0.64);
  color: var(--color-danger);
  background: rgba(239, 105, 105, 0.04);
}

.seller-security-members-note {
  margin: 3px 0 12px;
  font-size: 10px;
}

@media (min-width: 901px) {
  .workspace-seller[data-active-route="payout-account"] .workspace-main,
  .workspace-seller[data-active-route="account-security"] .workspace-main {
    gap: 10px;
    padding-top: 17px;
  }

  .workspace-seller[data-active-route="payout-account"] .seller-page,
  .workspace-seller[data-active-route="account-security"] .seller-page {
    gap: 10px;
  }

  .workspace-seller .workspace-kpi {
    min-height: 72px;
  }

  .workspace-seller .workspace-table th,
  .workspace-seller .workspace-table td {
    height: 46px;
  }

  .seller-settings-tabs {
    min-height: 39px;
  }

  .seller-payout-current,
  .seller-payout-change-form,
  .seller-payout-security,
  .seller-payout-history,
  .seller-security-members {
    padding: 12px 14px;
    border-radius: 3px;
  }

  .seller-payout-current {
    grid-column: 1 / -1;
  }

  .seller-payout-summary {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .seller-payout-metric {
    min-height: 58px;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
  }

  .seller-payout-metric > .seller-muted {
    font-size: 9px;
  }

  .seller-payout-metric > strong,
  .seller-payout-metric .workspace-status,
  .seller-payout-metric .seller-payout-account-number {
    font-size: 10px;
  }

  .seller-payout-change-workspace {
    grid-template-columns: minmax(0, 1fr) minmax(245px, 0.31fr);
    gap: 10px;
  }

  .seller-payout-change-form > .seller-panel-title,
  .seller-payout-security > .seller-panel-title,
  .seller-payout-history > .seller-panel-title,
  .seller-security-members > .seller-panel-title {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .seller-form-label {
    font-size: 9px;
  }

  .seller-payout-form .input,
  .seller-password-form .input {
    min-height: 32px;
    height: 32px;
    font-size: 10px;
  }

  .seller-payout-form .button,
  .seller-security-page .button {
    min-height: 31px;
    font-size: 9px;
  }

  .seller-security-sections {
    border-top: 1px solid var(--color-border);
  }

  .seller-security-section-row {
    min-height: 66px;
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 12px 9px;
  }

  .seller-security-row-heading .seller-panel-title {
    font-size: 11px;
  }

  .seller-security-row-heading p {
    margin-top: 4px;
    font-size: 9px;
  }

  .seller-security-section-row .seller-password-form {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 8px;
  }

  .seller-security-empty {
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    padding: 7px 10px;
    border: 1px dashed var(--color-border);
    border-radius: 3px;
    text-align: left;
  }

  .seller-security-empty .workspace-state-title {
    font-size: 10px;
  }

  .seller-security-empty .workspace-state-description {
    margin-top: 2px;
    font-size: 9px;
  }

  .seller-security-utility-row {
    align-items: start;
  }

  .seller-security-members {
    margin-top: 2px;
  }
}

@media (max-width: 1100px) {
  .seller-payout-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-payout-change-workspace,
  .seller-security-section-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .seller-payout-form,
  .seller-payout-summary,
  .seller-payout-verification,
  .seller-security-section-row .seller-password-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-payout-metric {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .seller-payout-verification {
    align-items: stretch;
  }
}

/* Screen 43 click-gated payout verification */
.seller-payout-verification-field {
  align-self: end;
}

.seller-payout-verification-field .workspace-status {
  min-height: 32px;
  width: max-content;
  justify-content: flex-start;
  padding-inline: 11px;
}

.seller-payout-mfa-form {
  display: grid;
  gap: 12px;
}

.seller-payout-mfa-form > p {
  margin: 0;
}

@media (min-width: 901px) {
  .seller-payout-form .seller-textarea {
    min-height: 38px;
    height: 38px;
  }
}

/* Screen 44 contractual session and activity structures */
.seller-security-table {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.seller-security-table .seller-security-data-table {
  min-width: 640px;
}

.seller-security-table .seller-security-data-table th,
.seller-security-table .seller-security-data-table td {
  height: 30px;
  padding-inline: 10px;
  font-size: 9px;
}

.seller-security-table-empty > td {
  height: auto !important;
  padding: 0 !important;
}

.seller-security-table .seller-security-empty {
  min-height: 54px;
  border: 0;
  border-radius: 0;
}

.seller-security-activity-table .seller-security-data-table {
  min-width: 480px;
}

/* Screens 43–44 final approved-desktop fidelity */
.seller-bank-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.seller-bank-mark {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 6px;
  background: #f4d518;
  color: #111820;
  font-size: 13px;
  font-weight: 900;
}

.seller-bank-mark-088 {
  border-radius: 50%;
  background: #1888df;
  color: #fff;
}

.seller-payout-date {
  white-space: pre-line;
  line-height: 1.45;
}

.seller-payout-history-pager {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-top: 0;
}

.seller-payout-history-pager .button,
.seller-payout-history-pager > span {
  display: inline-grid;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  place-items: center;
  padding: 0;
  border-radius: 3px;
}

.seller-payout-history-pager > span.is-current {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: rgba(72, 220, 164, 0.08);
}

.seller-settings-footer {
  grid-column: 1 / -1;
  padding: 8px 0 0;
  color: var(--color-text-subtle);
  font-size: 9px;
  letter-spacing: 0.02em;
  text-align: center;
}

.seller-security-session-content,
.seller-security-activity-content {
  display: grid;
  min-width: 0;
  gap: 8px;
}

/* 안쪽 표가 min-width: 720px 인데 이 상자는 overflow: hidden 이었습니다.
   모바일(창 319px)에서 표의 400px 이 보이지도, 스크롤되지도 않았습니다.
   가로만 스크롤을 열고 .workspace-table-wrap 과 같은 스크롤 섀도를 답니다. */
.seller-security-session-table {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(90deg, var(--color-surface) 40%, transparent) left center / 32px 100% no-repeat local,
    linear-gradient(90deg, transparent, var(--color-surface) 60%) right center / 32px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.42), transparent) left center / 16px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.42), transparent) right center / 16px 100% no-repeat scroll,
    var(--color-surface);
}

.seller-security-session-table .workspace-table {
  min-width: 720px;
}

.seller-security-session-table .workspace-table th,
.seller-security-session-table .workspace-table td {
  height: 29px;
  padding: 4px 8px;
  font-size: 9px;
}

.seller-browser-identity {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.seller-browser-mark {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: conic-gradient(#e23b2f 0 33%, #efcf31 33% 66%, #32a955 66%);
}

.seller-browser-mark::after {
  width: 7px;
  height: 7px;
  border: 2px solid #dce8ef;
  border-radius: 50%;
  background: #3186c7;
  content: "";
}

.seller-browser-mark-edge {
  background: linear-gradient(135deg, #0eb5d5 12%, #1564c0 52%, #39c88c 100%);
}

.seller-browser-mark-edge::after {
  width: 9px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  transform: rotate(-28deg);
}

.seller-browser-mark-safari {
  background: #3ba4e8;
}

.seller-browser-mark-safari::after {
  width: 10px;
  height: 2px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  transform: rotate(-42deg);
}

.seller-session-remove.button {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.seller-session-remove svg {
  width: 13px;
  height: 13px;
}

.seller-end-sessions {
  justify-self: start;
}

.seller-security-activity-list {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.seller-security-activity-row {
  display: grid;
  min-height: 24px;
  grid-template-columns: 20px minmax(130px, .7fr) minmax(190px, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 1px 0;
  font-size: 9px;
}

.seller-security-activity-row time,
.seller-security-activity-row > span:not(.seller-security-activity-icon) {
  color: var(--color-text-subtle);
}

.seller-security-activity-icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.seller-security-activity-icon svg {
  width: 10px;
  height: 10px;
}

.seller-security-activity-icon.is-healthy { color: var(--color-primary); }
.seller-security-activity-icon.is-warning { color: var(--color-warning); }
.seller-security-activity-icon.is-neutral { color: var(--color-text-subtle); }

.seller-security-more.button {
  justify-self: end;
  min-height: 25px;
  padding: 0;
  border: 0;
  color: var(--color-primary);
  background: transparent;
}

.seller-security-mfa-summary,
.seller-security-inline-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.seller-security-inline-summary {
  justify-content: space-between;
}

.seller-security-verified {
  color: var(--color-primary);
  font-size: 9px;
  white-space: nowrap;
}

.seller-switch input:checked + .seller-switch-track {
  border-color: rgba(72, 220, 164, .7);
  background: var(--color-primary);
}

.seller-switch input:checked + .seller-switch-track::after {
  transform: translateX(16px);
  background: #f4fbf8;
}

.seller-contract-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

@media (min-width: 901px) {
  .workspace-seller[data-active-route="payout-account"] .workspace-main,
  .workspace-seller[data-active-route="account-security"] .workspace-main {
    padding: 17px 29px 14px;
  }

  .workspace-seller[data-active-route="payout-account"] .seller-page,
  .workspace-seller[data-active-route="account-security"] .seller-page {
    gap: 8px;
  }

  .workspace-seller[data-active-route="payout-account"] .workspace-page-header,
  .workspace-seller[data-active-route="account-security"] .workspace-page-header {
    min-height: 45px;
  }

  .workspace-seller[data-active-route="payout-account"] .workspace-page-title,
  .workspace-seller[data-active-route="account-security"] .workspace-page-title {
    font-size: 18px;
  }

  .seller-settings-tabs {
    min-height: 37px;
    gap: 28px;
  }

  .seller-settings-tab {
    min-height: 37px;
    font-size: 10px;
  }

  .seller-payout-current {
    padding: 14px 18px 11px;
  }

  .seller-payout-summary {
    grid-template-columns: 1.05fr .9fr 1.55fr .78fr 1.05fr 1.1fr;
  }

  .seller-payout-metric {
    min-height: 61px;
    padding: 9px 15px;
  }

  .seller-payout-current-notice {
    min-height: 38px;
    margin-top: 11px;
    padding: 8px 12px;
    font-size: 9px;
  }

  .seller-payout-change-workspace {
    grid-template-columns: minmax(0, 1fr) 344px;
    gap: 12px;
  }

  .seller-payout-change-form,
  .seller-payout-security {
    min-height: 238px;
    padding: 14px 18px;
  }

  .seller-payout-form {
    grid-template-columns: .82fr 1.05fr .96fr .64fr;
    gap: 10px 14px;
  }

  .seller-payout-form .seller-form-field-wide,
  .seller-payout-form .seller-payout-form-actions {
    grid-column: 1 / -1;
  }

  .seller-payout-form-actions {
    justify-content: flex-end;
  }

  .seller-payout-guidance {
    gap: 16px;
  }

  .seller-payout-guidance-item {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 9px;
  }

  .seller-payout-history {
    min-height: 181px;
    padding: 11px 18px 8px;
  }

  .seller-payout-history-table {
    overflow: hidden;
    border: 1px solid var(--color-border);
  }

  .seller-payout-history-table .workspace-table {
    min-width: 100%;
    table-layout: fixed;
  }

  .seller-payout-history-table .workspace-table th,
  .seller-payout-history-table .workspace-table td {
    height: 31px;
    padding: 4px 10px;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .seller-payout-history-table .workspace-table th:nth-child(1) { width: 12%; }
  .seller-payout-history-table .workspace-table th:nth-child(2) { width: 11%; }
  .seller-payout-history-table .workspace-table th:nth-child(3) { width: 11%; }
  .seller-payout-history-table .workspace-table th:nth-child(4) { width: 15%; }
  .seller-payout-history-table .workspace-table th:nth-child(5) { width: 23%; }
  .seller-payout-history-table .workspace-table th:nth-child(6) { width: 8%; }
  .seller-payout-history-table .workspace-table th:nth-child(7) { width: 12%; }
  .seller-payout-history-table .workspace-table th:nth-child(8) { width: 8%; }

  .workspace-seller[data-active-route="account-security"] .seller-security-sections {
    border-bottom: 1px solid var(--color-border);
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-section-row {
    min-height: 61px;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    padding: 10px 8px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-sessions-row {
    min-height: 177px;
    align-items: start;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-activities-row {
    min-height: 155px;
    align-items: start;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-notification-row {
    min-height: 112px;
    align-items: start;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-logout-row {
    min-height: 65px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-logout-row > .button {
    justify-self: end;
    min-width: 118px;
  }

  .seller-security-row-heading .seller-panel-title {
    font-size: 12px;
  }

  .seller-security-section-row .seller-password-form {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 116px;
  }

  .seller-notification-settings {
    gap: 4px;
  }

  .seller-notification-item {
    min-height: 27px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }
}


/* 43-44 desktop final viewport fit */
@media (min-width: 901px) {
  .workspace-seller[data-active-route="account-security"] .workspace-main {
    padding-top: 13px;
    padding-bottom: 8px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-page {
    gap: 5px;
  }

  .workspace-seller[data-active-route="account-security"] .workspace-page-header {
    min-height: 41px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-settings-tabs {
    min-height: 34px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-settings-tab {
    min-height: 34px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-section-row {
    min-height: 55px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-sessions-row {
    min-height: 164px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-activities-row {
    min-height: 142px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-notification-row {
    min-height: 99px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-logout-row {
    min-height: 58px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-session-table .workspace-table th,
  .workspace-seller[data-active-route="account-security"] .seller-security-session-table .workspace-table td {
    height: 27px;
  }

  .workspace-seller[data-active-route="account-security"] .seller-security-activity-row {
    min-height: 22px;
  }
}

/* ── 좁은 화면에서 접히지 않던 고정 트랙들 (2026-08-11) ──
 * 결함 스캐너(scratchpad/defects.mjs)가 390px 에서 잡아낸 것들입니다.
 * 셋 다 트랙 바닥값의 합이 실제 칸보다 커서 내용이 화면 밖으로 밀려났고,
 * 조상에 가로 스크롤이 없어 **볼 방법이 없었습니다.** */

@media (max-width: 760px) {
  /* 필터바가 grid-auto-flow: column 이라 항목이 전부 한 줄에 묶였습니다.
     337px 안에 165px 칸 두 개가 생기고 그 안의 날짜 범위(최소 288px)가 넘쳤습니다.
     줄로 흘려보내면 각 항목이 온폭을 쓰므로 안쪽도 같이 풀립니다. */
  .seller-approved-filterbar {
    grid-auto-flow: row;
    grid-auto-columns: auto;
  }

  /* 위 규칙만으로는 부족합니다. 이 필터 묶음들은 별도 규칙으로
     grid-template-columns: repeat(2, minmax(0,1fr)) 를 갖고 있어서
     337px 를 165px 두 칸으로 쪼갭니다. 명시 트랙이 auto-flow 보다 우선하므로
     트랙 자체를 한 칸으로 내려야 안쪽 날짜 범위(최소 288px)가 풀립니다. */
  .seller-preparation-filters,
  .seller-orders-filters,
  .seller-rentals-filters,
  .seller-allocation-filters,
  /* 마켓 필터는 125px + minmax(260px,430px) + 120px = 최소 505px 이라 별도로 적어둡니다.
     이 규칙은 grid-auto-flow: unset 으로 필터바의 흐름 설정도 되돌리고 있어
     트랙을 직접 내리지 않으면 안 접힙니다. */
  .seller-market-filters {
    grid-template-columns: minmax(0, 1fr);
  }

  /* 계정 보안 활동 행: 20 + 130 + 190 + 여백 = 364px 인데 칸은 321px 이라
     시각(time)이 36px 밖으로 나갔습니다. 바닥값을 풀어 칸 안에서 나눠 갖게 합니다. */
  .seller-security-activity-row {
    grid-template-columns: 20px minmax(0, 0.7fr) minmax(0, 1fr) auto;
  }

  /* 주문 상세 상품 행: 72 + 190 + 90×3 = 532px 트랙이 316px 상자에 들어 있고
     상자는 overflow: hidden 이라 216px 이 아예 닿지 않았습니다.
     이미지는 두 줄을 세로로 차지하고, 이름은 윗줄 온폭, 수치 셋은 아랫줄로 내립니다. */
  .seller-order-rent-product {
    grid-template-columns: 72px repeat(3, minmax(0, 1fr));
  }

  .seller-order-rent-product > *:first-child {
    grid-row: 1 / 3;
  }

  .seller-order-rent-product > *:nth-child(2) {
    grid-column: 2 / -1;
  }

  .seller-order-rent-product > *:nth-child(n + 3) {
    grid-row: 2;
  }

  /* 렌트 준비 안내: minmax(210px,1fr) 40px minmax(210px,1fr) = 최소 460px 인데
     칸은 352px 입니다. 두 단계와 사이 화살표를 세로로 쌓습니다. */
  .seller-preparation-guide-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  /* 검색 상자의 min-width: 240px 이 필터 행을 밀어냈습니다. 칸에 맞춰 줄어들게 합니다. */
  .seller-approved-search {
    min-width: 0;
  }

  /* 주문 상세 패널 머리가 flex nowrap 이라 제목과 도구가 한 줄에 묶였습니다. */
  .seller-order-detail-panel-head,
  .seller-order-side-head {
    flex-wrap: wrap;
  }

  /* 활동 내역 행: 18 + 130 + 120 + 145 + 여백 = 461px 트랙이 335px 칸에 들어 있어
     패널 전체(그리고 그 안의 머리까지)를 463px 로 벌려놓고 있었습니다.
     점·본문은 첫 줄, 시각 등 나머지는 다음 줄로 내립니다. */
  .seller-order-activity-list li {
    grid-template-columns: 18px minmax(0, 1fr) minmax(0, 1fr);
  }

  /* 자동 배치에 맡기면 주체(3번째)가 18px 짜리 점 칸으로 떨어져
     "오버 / 렌트 / 배정 / 시스 / 템" 처럼 한 낱말씩 끊겼습니다. 자리를 못 박습니다.
       점 │ 제목
       점 │ 주체 │ 시각
       점 │ 상세 */
  .seller-order-activity-list li > *:first-child {
    grid-row: 1 / span 3;
  }

  .seller-order-activity-list li > *:nth-child(2) {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  .seller-order-activity-list li > *:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .seller-order-activity-list li > *:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  .seller-order-activity-list li > *:nth-child(5) {
    grid-column: 2 / -1;
    grid-row: 3;
  }
}
