:root {
  color-scheme: light;
  --ink: #123d47;
  --muted: #6b8185;
  --line: #d3e9e9;
  --paper: #ffffff;
  --canvas: #eef9fa;
  --accent: #35c4a5;
  --accent-strong: #24ad8f;
  --accent-soft: #e7f7f0;
  --warm: #d7a55e;
  --warm-soft: #fff2df;
  --danger: #a5453f;
  --danger-soft: #fff0ee;
  --blue: #2caed7;
  --blue-strong: #1d8eae;
  --blue-soft: #e8f8fb;
  --shadow: 0 12px 32px rgba(25, 106, 119, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

a {
  color: inherit;
}

.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(211, 233, 233, 0.9);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.header-link,
.text-link {
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover,
.text-link:hover {
  text-decoration: underline;
}

.public-main,
.admin-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.intro-band {
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(31px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.15;
}

h3 {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.25;
}

.lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.panel + .panel {
  margin-top: 18px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 24px 17px;
  border-bottom: 1px solid var(--line);
}

.panel-header p,
.section-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.panel-body {
  padding: 24px;
}

.soft-band {
  border: 1px solid #bfe6e1;
  background: var(--blue-soft);
  box-shadow: none;
}

.warm-band {
  border-color: #f1d9bf;
  background: var(--warm-soft);
  box-shadow: none;
}

.status-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fcfc;
}

.status-step {
  position: relative;
  min-height: 76px;
  padding: 16px 18px 14px 50px;
  border-right: 1px solid var(--line);
}

.status-step:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #c7e1e2;
  border-radius: 50%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-step.is-active .step-number,
.status-step.is-done .step-number {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.status-step strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.status-step span:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.action-row,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.action-row {
  margin-top: 21px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #9bd8d1;
  background: #f0fbfc;
}

.button-danger {
  background: var(--danger);
  color: #fff;
}

.button-quiet {
  min-height: 34px;
  padding: 0 10px;
  border-color: var(--line);
  background: transparent;
  color: var(--blue-strong);
  font-size: 12px;
}

.button .button-icon {
  display: inline-block;
  min-width: 14px;
  font-size: 16px;
  line-height: 1;
}

.hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: #315c63;
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #c7e1e2;
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 196, 165, 0.18);
}

.field input[type="file"] {
  padding: 7px;
}

.field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.udid-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  padding: 13px 14px;
  border: 1px dashed #9edbd3;
  border-radius: 6px;
  background: #f3fcfa;
}

.udid-value {
  min-width: 0;
  overflow: hidden;
  color: var(--accent-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.status-item dt {
  color: var(--muted);
  font-size: 13px;
}

.status-item dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.status-good {
  color: var(--accent-strong) !important;
}

.status-bad {
  color: var(--danger) !important;
}

.status-wait {
  color: var(--warm) !important;
}

.notice {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 6px;
  background: #f3f7f5;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.notice.is-error {
  background: var(--danger-soft);
  color: var(--danger);
}

.notice.is-good {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.empty-state {
  padding: 20px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.job-status {
  display: grid;
  gap: 10px;
  margin-top: 19px;
}

.job-state {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 27px;
  padding: 0 9px;
  border-radius: 5px;
  background: var(--warm-soft);
  color: #95541e;
  font-size: 12px;
  font-weight: 800;
}

.job-state.succeeded {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.job-state.failed {
  background: var(--danger-soft);
  color: var(--danger);
}

.hidden {
  display: none !important;
}

.admin-main {
  padding-top: 30px;
}

.admin-titlebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-titlebar h1 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.admin-titlebar .lede {
  max-width: 470px;
  font-size: 14px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 226px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

.admin-sidebar {
  position: sticky;
  top: 20px;
  padding: 18px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.admin-sidebar-head {
  padding: 2px 10px 15px;
  border-bottom: 1px solid var(--line);
}

.admin-sidebar-head .eyebrow {
  margin-bottom: 5px;
}

.admin-sidebar-head strong {
  font-size: 14px;
}

.admin-nav {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 18px 0 4px;
}

.admin-nav-group {
  display: grid;
  gap: 3px;
}

.admin-nav-label {
  margin: 0 0 4px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.admin-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.admin-nav a.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.nav-icon {
  display: inline-grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.admin-content {
  min-width: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat {
  min-height: 105px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.stat-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.stat-value {
  display: block;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.admin-section {
  scroll-margin-top: 20px;
  margin-top: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f4fbfa;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td strong {
  display: block;
  margin-bottom: 3px;
}

.table-subtext {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.table-input,
.table-select {
  width: 100%;
  min-width: 138px;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid #c7e1e2;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.table-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: #eef5f5;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.badge-good {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.badge-bad {
  background: var(--danger-soft);
  color: var(--danger);
}

.badge-warm {
  background: var(--warm-soft);
  color: #95541e;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-panel {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fcfc;
}

.mini-panel h3 {
  margin-bottom: 14px;
}

.code-block {
  overflow: auto;
  margin: 0;
  padding: 13px;
  border-radius: 6px;
  background: #123d47;
  color: #d9f3ec;
  font: 12px/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.login-shell {
  width: min(440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12vh 0 15vh;
}

.login-shell .panel-body {
  padding: 28px;
}

.login-shell h1 {
  margin-bottom: 9px;
  font-size: 31px;
}

.login-shell .lede {
  margin-bottom: 24px;
  font-size: 14px;
}

.footer-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .public-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .admin-sidebar {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .admin-sidebar-head {
    display: none;
  }

  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }

  .admin-nav-group {
    gap: 3px;
    padding: 11px 8px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper);
  }

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

@media (max-width: 620px) {
  .topbar {
    min-height: 60px;
    padding: 0 17px;
  }

  .public-main,
  .admin-main {
    width: min(100% - 28px, 1180px);
    padding-top: 27px;
  }

  .public-main {
    padding-bottom: 44px;
  }

  h1 {
    font-size: 34px;
  }

  .panel-header,
  .panel-body {
    padding: 18px;
  }

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

  .status-step {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-step:last-child {
    border-bottom: 0;
  }

  .form-grid,
  .form-grid-wide {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .admin-titlebar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 8px;
  }

  .stat {
    min-height: 91px;
    padding: 13px;
  }

  .stat-value {
    font-size: 24px;
  }

  .button {
    width: 100%;
  }

  .form-actions .button,
  .action-row .button {
    width: auto;
  }

  .udid-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .udid-box .button {
    width: auto;
  }
}

/* Public install page: a compact flow for phone-sized screens. */
.public-page {
  min-height: 100vh;
  background: #eef9fa;
  --public-blue: #2caed7;
  --public-green: #35c4a5;
  --public-ink: #123d47;
  --public-muted: #6b8185;
  --public-line: #d3e9e9;
}

.simple-main {
  width: min(550px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.simple-hero {
  margin-bottom: 24px;
  text-align: center;
}

.simple-brand {
  margin: 0 0 17px;
  color: var(--public-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.simple-hero h1 {
  max-width: none;
  margin: 0 0 12px;
  color: var(--public-ink);
  font-size: 34px;
  line-height: 1.16;
}

.simple-hero > p:last-child {
  max-width: 410px;
  margin: 0 auto;
  color: var(--public-muted);
  font-size: 14px;
  line-height: 1.7;
}

.simple-card,
.simple-status {
  border: 1px solid var(--public-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(25, 106, 119, 0.1);
}

.simple-card {
  padding: 23px;
}

.simple-label {
  display: block;
  margin-bottom: 9px;
  color: var(--public-ink);
  font-size: 13px;
  font-weight: 800;
}

.simple-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.simple-input-row input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #c7e1e2;
  border-radius: 14px;
  outline: none;
  background: #f9fcfb;
  color: #23758a;
  font: 12px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.simple-input-row input.has-value {
  border-color: #8ed8d0;
  background: #f3fcfa;
}

.simple-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, opacity 140ms ease;
}

.simple-button + .simple-button {
  margin-top: 10px;
}

.copy-button {
  flex: 0 0 auto;
  min-width: 62px;
  padding: 0 12px;
  border: 1px solid #b5dfe4;
  border-radius: 999px;
  background: #f0fbfc;
  color: #237f98;
  font-size: 12px;
  font-weight: 800;
}

.copy-button:hover,
.simple-button-soft:hover {
  background: #ddf5f8;
}

.simple-button-soft {
  margin-top: 15px;
  border-color: #b5e2e8;
  background: #e8f8fb;
  color: #1d8eae;
}

.simple-button-primary {
  background: var(--public-green);
  color: #fff;
}

.simple-button-primary:hover {
  background: #24ad8f;
}

.simple-button-outline {
  border-color: #b5dfe4;
  background: #fff;
  color: #1d8eae;
}

.simple-button-outline:hover {
  background: #f0fbfc;
}

.simple-notice {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 7px;
  background: #f3f7f5;
  color: #62736e;
  font-size: 13px;
  line-height: 1.6;
}

.simple-notice.is-good {
  background: #e8f7f2;
  color: #176650;
}

.simple-notice.is-error {
  background: #fff0ee;
  color: #a5453f;
}

.simple-status {
  margin-top: 14px;
  padding: 21px 23px;
}

.simple-status-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 17px;
}

.simple-kicker {
  margin: 0 0 5px;
  color: #1d8eae;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.simple-status h2 {
  margin-bottom: 0;
  color: var(--public-ink);
  font-size: 21px;
}

.simple-status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #d7a55e;
}

.simple-status-dot.is-good {
  background: var(--public-green);
}

.simple-status-dot.is-bad {
  background: #d65c54;
}

.simple-status-dot.is-wait {
  background: #d7a55e;
}

.simple-status-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid #e2efef;
}

.simple-status-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 42px;
  border-bottom: 1px solid #e2efef;
}

.simple-status-list dt {
  color: var(--public-muted);
  font-size: 13px;
}

.simple-status-list dd {
  margin: 0;
  color: #4f625d;
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.simple-extra {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2efef;
}

.simple-extra-heading h3 {
  margin-bottom: 6px;
  color: var(--public-ink);
  font-size: 16px;
}

.simple-extra-heading p {
  margin-bottom: 14px;
  color: var(--public-muted);
  font-size: 12px;
  line-height: 1.6;
}

.simple-form {
  display: grid;
  gap: 9px;
}

.simple-form input {
  width: 100%;
  min-height: 43px;
  padding: 0 11px;
  border: 1px solid #cbded8;
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
}

.simple-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 196, 165, 0.18);
}

.file-field {
  display: grid;
  gap: 6px;
  color: #647670;
  font-size: 12px;
  font-weight: 700;
}

.file-field input {
  min-height: 39px;
  padding: 6px;
}

.simple-form .simple-button {
  margin-top: 3px;
}

.simple-form-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simple-form-two .simple-button {
  grid-column: 1 / -1;
}

.simple-job {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2efef;
}

.job-state {
  width: fit-content;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 5px;
  background: #fff2df;
  color: #94601f;
  font-size: 11px;
  font-weight: 850;
}

.job-state.succeeded {
  background: #e7f7f0;
  color: #176650;
}

.job-state.failed {
  background: #fff0ee;
  color: #a5453f;
}

.simple-job strong {
  color: var(--public-ink);
  font-size: 16px;
}

.simple-job-detail {
  overflow-wrap: anywhere;
  color: var(--public-muted);
  font-size: 12px;
  line-height: 1.6;
}

.simple-job .simple-button {
  margin-top: 5px;
}

@media (max-width: 520px) {
  .simple-main {
    width: min(100% - 24px, 550px);
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .simple-card,
  .simple-status {
    padding: 18px;
  }

  .simple-form-two {
    grid-template-columns: 1fr;
  }

  .simple-form-two .simple-button {
    grid-column: auto;
  }
}
