:root {
  --bg-1: #f8edd8;
  --bg-2: #ebf5ef;
  --ink: #17251f;
  --muted: #5c6f66;
  --line: rgba(23, 37, 31, 0.12);
  --card: rgba(255, 252, 246, 0.88);
  --card-strong: #fffaf2;
  --primary: #1e6b59;
  --primary-dark: #13493c;
  --accent: #de6e2f;
  --accent-dark: #b85217;
  --ok: #1d8f62;
  --warn: #b07b1b;
  --bad: #c24d42;
  --shadow: 0 26px 56px rgba(23, 37, 31, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(222, 110, 47, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(30, 107, 89, 0.16), transparent 24%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 78%);
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1460px, calc(100vw - 32px));
  margin: 24px auto 44px;
}

.hero,
.panel,
.summary-card {
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-xl);
  color: #fff8ef;
  background:
    linear-gradient(145deg, rgba(12, 33, 28, 0.96), rgba(24, 82, 66, 0.92)),
    linear-gradient(120deg, rgba(222, 110, 47, 0.16), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
}

.hero-kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-kicker {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero h1,
.panel h2,
.summary-card strong,
.comment-top strong,
.feed-head strong {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.hero p {
  margin: 0;
  max-width: 780px;
  line-height: 1.65;
  color: rgba(255, 248, 239, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.button.primary {
  color: white;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(19, 73, 60, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 252, 246, 0.9);
}

.button.danger {
  color: white;
  background: linear-gradient(180deg, #cb5e4d, #a53d30);
  box-shadow: 0 14px 28px rgba(165, 61, 48, 0.2);
}

.button.accent {
  color: white;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px rgba(184, 82, 23, 0.22);
}

.button.ghost {
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button.small {
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
}

.status-bar {
  margin: 18px 0 0;
}

.status-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 12px 28px rgba(23, 37, 31, 0.08);
  padding: 18px 20px;
}

.status-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-copy {
  flex: 1;
  min-width: 0;
}

.status-badge {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.status-badge.idle {
  background: rgba(23, 37, 31, 0.08);
}

.status-badge.ok {
  color: white;
  background: linear-gradient(180deg, #20a069, #177651);
}

.status-badge.work {
  color: white;
  background: linear-gradient(180deg, #d98236, #b86b1f);
}

.status-badge.warn {
  color: white;
  background: linear-gradient(180deg, #c69a2c, #9d761c);
}

.status-badge.bad {
  color: white;
  background: linear-gradient(180deg, #cf5f53, #ab3f34);
}

.status-message {
  color: var(--ink);
  font-weight: 800;
}

.status-detail {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.94rem;
}

.status-percent {
  min-width: 52px;
  text-align: right;
  font-weight: 800;
  color: var(--primary-dark);
}

.status-progress-track {
  position: relative;
  overflow: hidden;
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(23, 37, 31, 0.08);
}

.status-progress-bar {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.28s ease, background 0.28s ease;
}

.status-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-100%);
  animation: status-shimmer 1.6s linear infinite;
}

.status-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.status-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(23, 37, 31, 0.1);
  background: rgba(255, 255, 255, 0.56);
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.status-step-index {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
  background: rgba(23, 37, 31, 0.08);
}

.status-step-text {
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-step.is-done {
  border-color: rgba(29, 143, 98, 0.22);
  background: rgba(29, 143, 98, 0.08);
}

.status-step.is-done .status-step-index {
  color: white;
  background: var(--ok);
}

.status-step.is-done .status-step-text {
  color: var(--ink);
}

.status-step.is-current {
  border-color: rgba(222, 110, 47, 0.34);
  background: rgba(222, 110, 47, 0.12);
}

.status-step.is-current .status-step-index {
  color: white;
  background: var(--accent);
  animation: status-pulse 1.4s ease-in-out infinite;
}

.status-step.is-current .status-step-text {
  color: var(--ink);
}

.status-step.is-next {
  opacity: 0.72;
}

.status-step.is-error {
  border-color: rgba(194, 77, 66, 0.3);
  background: rgba(194, 77, 66, 0.1);
}

.status-step.is-error .status-step-index {
  color: white;
  background: var(--bad);
}

.status-step.is-error .status-step-text {
  color: var(--ink);
}

.status-card.is-idle .status-progress-bar {
  background: linear-gradient(90deg, rgba(23, 37, 31, 0.22), rgba(23, 37, 31, 0.1));
}

.status-card.is-ok .status-progress-bar {
  background: linear-gradient(90deg, #20a069, #58bb84);
}

.status-card.is-bad .status-progress-bar {
  background: linear-gradient(90deg, #cf5f53, #ab3f34);
}

@keyframes status-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes status-shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.tabs-shell {
  margin-top: 18px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-button {
  border: 1px solid rgba(23, 37, 31, 0.12);
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  background: rgba(255, 252, 246, 0.82);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.tab-button.is-active {
  color: white;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(19, 73, 60, 0.18);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.summary-grid,
.workspace-grid,
.data-grid,
.mini-grid,
.field-row,
.comments-grid {
  display: grid;
  gap: 14px;
}

.summary-grid {
  margin-top: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.summary-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 12px 28px rgba(23, 37, 31, 0.08);
}

.summary-card {
  padding: 20px;
}

.summary-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.summary-card strong {
  font-size: 2rem;
}

.summary-card.ok {
  border-color: rgba(29, 143, 98, 0.28);
}

.summary-card.warn {
  border-color: rgba(176, 123, 27, 0.28);
}

.summary-card.accent {
  border-color: rgba(222, 110, 47, 0.32);
}

.workspace-grid,
.data-grid {
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  padding: 20px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.panel-head-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.panel-toggle-body.is-hidden {
  display: none;
}

.toggle-button {
  min-width: 108px;
}

.account-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.panel h2 {
  margin: 4px 0 0;
  font-size: 1.65rem;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  font-weight: 700;
}

.field input[type="text"],
.field input[type="number"],
.field input[type="file"],
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 37, 31, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible,
.button:focus-visible,
.copy-button:focus-visible {
  outline: 3px solid rgba(30, 107, 89, 0.2);
  outline-offset: 2px;
}

.field small {
  color: var(--muted);
}

.field-wide {
  margin-bottom: 14px;
}

.field-row {
  grid-template-columns: 0.9fr 1.1fr;
}

.settings-row {
  grid-template-columns: 1.1fr 0.9fr;
}

.checkbox-stack {
  margin-top: 14px;
}

.checkbox-field .checkbox-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(23, 37, 31, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.checkbox-field input {
  margin-top: 4px;
}

.info-box,
.mini-card,
.context-box,
.comment-card,
.feed-item,
.empty-block,
.table-shell {
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.info-box {
  margin-top: 16px;
  padding: 16px;
}

.info-box p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.mini-grid {
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.queue-summary-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.upload-box {
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: var(--radius-md);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(30, 107, 89, 0.08), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.78);
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.upload-meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-band {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(222, 110, 47, 0.12), rgba(30, 107, 89, 0.08)),
    rgba(255, 255, 255, 0.78);
}

.action-band p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.custom-comment-box {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.76);
}

.custom-comment-box.is-hidden {
  display: none;
}

.custom-comment-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.button.wide {
  width: 100%;
  justify-content: center;
}

.mini-card {
  padding: 16px;
}

.mini-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.context-box {
  min-height: 100%;
  padding: 18px;
}

.context-box.empty,
.empty-block {
  padding: 18px;
  color: var(--muted);
}

.context-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(23, 37, 31, 0.1);
}

.context-line:last-child {
  border-bottom: 0;
}

.context-line-link {
  align-items: flex-start;
}

.context-link {
  min-width: 0;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.context-text {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(248, 237, 216, 0.52);
  line-height: 1.6;
  white-space: pre-wrap;
}

.context-text-preview {
  margin-bottom: 0;
}

.context-text-overflow {
  margin-top: 10px;
  max-height: 220px;
  padding-right: 10px;
}

.comments-grid {
  grid-template-columns: 1fr;
}

.comment-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.comment-card.planned::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.comment-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.comment-index {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(23, 37, 31, 0.08);
  font-weight: 800;
}

.comment-top p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.comment-text {
  margin-top: 14px;
  line-height: 1.6;
  font-size: 1.04rem;
}

.comment-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.comments-list {
  display: grid;
  gap: 10px;
}

.comment-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.comment-row.planned {
  border-color: rgba(30, 107, 89, 0.24);
  background:
    linear-gradient(90deg, rgba(30, 107, 89, 0.08), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.82);
}

.comment-row-body {
  min-width: 0;
  flex: 1 1 auto;
}

.comment-row-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  line-height: 1.55;
}

.comment-row-index {
  font-weight: 800;
  color: var(--primary);
}

.comment-row-text {
  min-width: 0;
  color: var(--ink);
}

.comment-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.comment-tag,
.severity {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.comment-tag {
  background: rgba(23, 37, 31, 0.08);
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(30, 107, 89, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.copy-button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(23, 37, 31, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.scroll-box {
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.comments-scroll {
  max-height: 420px;
  padding-right: 4px;
}

.accounts-scroll {
  max-height: 376px;
}

.delivery-scroll {
  max-height: 332px;
  padding-right: 4px;
}

.queue-list-scroll {
  max-height: 420px;
  padding-right: 4px;
}

.table-shell {
  overflow: auto;
}

.promotion-cell {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.promotion-cell-compact {
  min-width: 150px;
}

.promotion-excerpt {
  margin-bottom: 0;
  word-break: break-word;
}

.promotion-actions-cell {
  white-space: nowrap;
}

.promotion-table-scroll {
  max-height: 320px;
  margin-top: 14px;
  padding-right: 4px;
}

.promotion-overflow-table th {
  top: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(23, 37, 31, 0.08);
  vertical-align: top;
}

.select-cell {
  width: 84px;
}

.account-login-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.account-login-text {
  min-width: 0;
}

.account-login-text strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.account-avatar.has-image {
  background: rgba(23, 37, 31, 0.08);
  box-shadow: inset 0 0 0 1px rgba(23, 37, 31, 0.08);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.data-table thead {
  background: rgba(248, 237, 216, 0.48);
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(248, 237, 216, 0.94);
}

.severity.ok {
  color: white;
  background: var(--ok);
}

.severity.warn {
  color: white;
  background: var(--warn);
}

.severity.bad {
  color: white;
  background: var(--bad);
}

.severity.muted {
  background: rgba(23, 37, 31, 0.08);
}

.feed-list {
  display: grid;
  gap: 12px;
}

.feed-list-stack {
  display: grid;
  gap: 12px;
}

.feed-item {
  padding: 16px;
}

.profile-history-scroll {
  max-height: 420px;
  padding-right: 4px;
}

.queue-history-scroll {
  max-height: 420px;
  padding-right: 4px;
}

.feed-link {
  color: var(--primary-dark);
  text-decoration: none;
  word-break: break-word;
}

.feed-link:hover {
  text-decoration: underline;
}

.feed-item.ok {
  border-color: rgba(29, 143, 98, 0.22);
}

.feed-item.bad {
  border-color: rgba(194, 77, 66, 0.22);
}

.feed-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.feed-head span,
.feed-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.feed-text {
  line-height: 1.55;
  margin-bottom: 10px;
}

.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-panel {
  margin-top: 16px;
}

.service-info-box {
  margin-top: 0;
}

.service-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .hero,
  .workspace-grid,
  .data-grid,
  .field-row,
  .comments-grid,
  .summary-grid,
  .profile-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .account-toolbar {
    justify-content: flex-start;
  }

  .status-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .status-percent {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 20px, 100%);
    margin: 10px auto 28px;
  }

  .hero,
  .panel,
  .summary-card {
    padding: 16px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .panel h2 {
    font-size: 1.35rem;
  }

  .feed-head,
  .context-line,
  .comment-actions,
  .comment-row,
  .comment-row-meta,
  .upload-actions,
  .status-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .data-table {
    font-size: 0.92rem;
  }

  .status-card {
    padding: 16px;
  }

  .status-steps {
    grid-template-columns: 1fr;
  }
}
