* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100dvh;
}

.page-hyrox .hyrox-wrap,
.page-hyrox .app-container {
  width: 100%;
  padding: 1.25rem var(--page-pad-x) max(3rem, calc(1.25rem + env(safe-area-inset-bottom))) var(--page-pad-x-right);
}

/* ==================== Program tab bar ==================== */

.program-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.85rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.program-bar::-webkit-scrollbar { display: none; }

.program-tab {
  flex-shrink: 0;
  background: var(--surface);
  border: none;
  border-radius: 99px;
  padding: 0.55rem 1rem;
  min-height: 2.5rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}

.program-tab.active {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.28);
}

.program-tab-new {
  flex-shrink: 0;
  background: var(--accent-soft);
  border: none;
  border-radius: 99px;
  padding: 0.55rem 0.85rem;
  min-height: 2.5rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  -webkit-tap-highlight-color: transparent;
}

.program-tab,
.program-tab-new {
  min-height: 2.75rem;
}

.program-tab-new svg { width: 13px; height: 13px; }

/* ==================== Program name card (layout shell) ==================== */

.program-name-card .program-header,
.program-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.program-name {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  padding: 0.3rem 0;
  outline: none;
}

.program-name:focus {
  background: var(--accent-soft);
  border-radius: 6px;
  padding: 0.3rem 0.45rem;
  margin-left: -0.45rem;
}

.program-name::placeholder { color: var(--text-secondary); opacity: 0.65; }

.program-action {
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0.4rem 0.65rem;
  min-height: 2rem;
  font: inherit;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 99px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.12s ease, color 0.12s ease;
}

.program-action:active {
  color: var(--danger);
  background: var(--run-warm-bg);
}

/* ==================== Program stats (inside card) ==================== */

.program-stats {
  padding: 0.35rem 0.7rem 0.45rem;
}

.program-stats:empty { display: none; }

.stats-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.stat {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-value {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stats-totals {
  background: var(--surface-2);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.stats-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.85rem;
  min-height: 2.4rem;
  font-size: 0.8125rem;
  box-shadow: inset 0 -1px 0 var(--divider);
}

.stats-total-row:last-child { box-shadow: none; }

.stats-total-name {
  font-weight: 500;
  color: var(--text-2);
}

.stats-total-value {
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* ==================== Step list (list items inside card) ==================== */

.step-list {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.15rem;
  overflow: visible;
}

.step-list:empty { display: none; }

.step-list--dragging .step-row:not(.dragging),
.step-list--dragging .step-divider:not(.dragging) {
  transition: opacity 0.15s ease;
  opacity: 0.72;
}

.step-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.4rem;
  padding: 0.45rem 0.55rem 0.45rem 0;
  min-height: 3.1rem;
  background: transparent;
  border-radius: var(--radius-xs);
  position: relative;
  transition: background 0.12s ease;
}

.step-row:focus-within { background: var(--surface-hover); }

.step-row-trailing {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}

.step-row.is-run {
  background: var(--run-warm-bg);
  box-shadow: inset 3px 0 0 var(--run-warm);
}

.step-row.is-run .step-name-input { color: var(--run); font-weight: 600; }
.step-row.is-run .step-qty-input { color: var(--run); }

.step-grip {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  cursor: grab;
  padding: 0;
  touch-action: none;
  opacity: 0.5;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.12s ease, color 0.12s ease;
}

.step-grip:active { cursor: grabbing; opacity: 1; }
.step-grip svg { width: 15px; height: 15px; }

.step-row.dragging,
.step-divider.dragging {
  opacity: 1;
  z-index: 30;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.step-row.drag-over,
.step-divider.drag-over {
  box-shadow: 0 -3px 0 0 var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .step-row.dragging,
  .step-divider.dragging {
    transform: none;
  }

  .step-list--dragging .step-row:not(.dragging),
  .step-list--dragging .step-divider:not(.dragging) {
    transition: none;
  }
}

.desktop-only,
.step-num {
  display: none;
}

.step-name-input {
  grid-column: 2;
  grid-row: 1;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.4rem 0.25rem;
  outline: none;
  min-width: 0;
  width: 100%;
  touch-action: manipulation;
}

.step-qty-input {
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0.35rem 0.25rem;
  outline: none;
  width: 3.35rem;
  min-width: 2.75rem;
  text-align: right;
  touch-action: manipulation;
  font-variant-numeric: tabular-nums;
}

.step-unit-select {
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35rem 0.2rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  min-width: 2.25rem;
}

.step-unit-select:focus { color: var(--accent); }

.step-name-input::placeholder,
.step-qty-input::placeholder { color: var(--text-secondary); opacity: 0.6; }

.step-name-input:focus,
.step-qty-input:focus {
  color: var(--accent);
}

.step-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 2.1rem;
  min-height: 2.1rem;
  width: 2.1rem;
  height: 2.1rem;
  background: transparent;
  border: 0;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.12s ease, color 0.12s ease, opacity 0.12s ease;
}

.step-remove-btn:active {
  color: var(--danger);
  background: var(--run-warm-bg);
  opacity: 1;
}

.step-remove-btn svg { width: 14px; height: 14px; }

/* ==================== Suggestions dropdown ==================== */

.step-suggestions {
  position: fixed;
  z-index: 200;
  left: 4vw !important;
  width: 92vw !important;
  background: var(--surface);
  border: none;
  border-radius: var(--radius);
  padding: 4px 0;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.step-suggestions[hidden] { display: none; }

.suggestion-item {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-2);
  padding: 0.6rem 0.9rem;
  min-height: 2.75rem;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.suggestion-item:active {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ==================== Round divider (inside card) ==================== */

.step-divider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2rem;
  padding: 0.9rem 0.55rem 0.35rem;
  position: relative;
}

.divider-label {
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  outline: none;
  padding: 0.15rem 0.35rem;
  line-height: 1.3;
  border-radius: 99px;
  background: var(--accent-soft);
}

.divider-label:focus { color: var(--text-primary); }
.divider-label::placeholder { color: var(--text-secondary); }

.divider-label-static {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.3;
  padding: 0.15rem 0.55rem;
  background: var(--accent-soft);
  border-radius: 99px;
}

.round-auto { cursor: default; }

.step-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--divider);
}

.divider-remove {
  background: transparent;
  border: 0;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.4;
  display: flex;
  align-items: center;
}

.divider-remove:active { color: var(--danger); opacity: 1; }
.divider-remove svg { width: 13px; height: 13px; }

/* ==================== Quick-add chips ==================== */

.quick-add {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem 0.25rem;
}

.quick-add:empty { display: none; }

.quick-add-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  min-height: 2.2rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-2);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.1s ease, color 0.1s ease;
}

.quick-add-chip:active {
  background: var(--accent-soft);
  color: var(--accent);
}

.quick-add-chip.is-run-chip {
  color: var(--run-warm);
  background: var(--run-warm-bg);
}

.quick-add-chip svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* ==================== Add step (bottom bar) ==================== */

.add-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 0.65rem 1.1rem;
  min-height: 2.5rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.005em;
  box-shadow: 0 4px 14px rgba(47, 107, 255, 0.26);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.add-step-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(47, 107, 255, 0.2);
}

.add-step-btn .plus-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
}

.add-step-btn--ghost {
  background: var(--surface-2);
  color: var(--text-2);
  box-shadow: none;
}

.add-step-btn--ghost:active {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: none;
}

.step-list-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ==================== Sync card hint (hyrox-details) ==================== */

.extras-hint {
  margin: 0;
  padding: 0 1rem 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.device-sync-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.25rem 1rem 1rem;
  padding: 0.6rem 1.1rem;
  min-height: 2.5rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--button-text);
  background: var(--accent);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(47, 107, 255, 0.26);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s ease;
}

.device-sync-btn:active { transform: scale(0.97); }

/* ==================== Race reference list ==================== */

.race-ref-list {
  padding: 0 0.8rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.race-ref-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  background: var(--surface-2);
  border: none;
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.rr-run-col {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem;
  background: var(--run-warm-bg);
  align-self: stretch;
}

.rr-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--run-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rr-run-text {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--run-warm);
  white-space: nowrap;
}

.rr-station {
  padding: 0.45rem 0.55rem;
  min-width: 0;
}

.rr-station-num {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.rr-name {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.rr-sub {
  font-size: 0.625rem;
  color: var(--text-secondary);
  margin-top: 0.05rem;
}

.rr-specs {
  font-size: 0.625rem;
  color: var(--text-secondary);
  text-align: right;
  white-space: nowrap;
  padding-right: 0.7rem;
}

.race-ref-total {
  display: flex;
  gap: 1.2rem;
  padding: 0.65rem 0.1rem 0.2rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.race-ref-total strong {
  color: var(--accent);
  font-weight: 700;
}

/* ==================== Toast ==================== */

.toast-container {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--toast-bg);
  color: var(--toast-text);
  padding: 0.65rem 1.1rem;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 500;
  pointer-events: auto;
  animation: toastIn 250ms ease, toastOut 250ms ease 2750ms forwards;
  max-width: 320px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

/* ==================== Desktop ==================== */

@media (min-width: 640px) {
  .page-hyrox .app-container--wide {
    max-width: 40rem;
    margin: 0 auto;
    padding-top: 2.5rem;
  }

  .program-name-card .ds-card--pad,
  .program-summary-card .ds-card--pad,
  .quick-add-card .ds-card--pad {
    padding: 0.7rem 0.85rem 0.75rem;
  }

  .step-suggestions {
    left: auto !important;
    width: auto !important;
    min-width: 200px;
    max-height: 260px;
  }

  .step-row {
    grid-template-columns: 18px 28px minmax(0, 1fr) auto;
    column-gap: 0.35rem;
    padding: 0.45rem 0.4rem 0.45rem 0.2rem;
    min-height: 2.75rem;
  }

  .step-row-trailing { gap: 0.25rem; }

  .step-grip {
    grid-row: 1;
    grid-column: 1;
    padding: 0;
    min-width: 0;
    min-height: 0;
    width: auto;
    align-self: center;
  }

  .step-grip svg { width: 12px; height: 12px; }

  .desktop-only { display: revert; }
  .step-num {
    display: revert;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
    text-align: right;
    grid-column: 2;
    grid-row: 1;
  }

  .step-name-input {
    grid-column: 3;
    grid-row: 1;
    font-size: 0.875rem;
    padding: 0.4rem 0.35rem;
  }

  .step-qty-input {
    width: 3.5rem;
    min-width: 3rem;
    font-size: 0.8125rem;
    padding: 0.4rem 0.25rem;
  }

  .step-unit-select {
    font-size: 0.7rem;
    padding: 0.35rem 0.15rem;
    min-width: 2.35rem;
  }

  .step-remove-btn {
    min-width: 1.85rem;
    min-height: 1.85rem;
    width: 1.85rem;
    height: 1.85rem;
    opacity: 0.5;
  }

  .step-remove-btn svg { width: 13px; height: 13px; }

  @media (hover: hover) {
    .step-row:hover {
      background: var(--surface-hover);
    }

    .step-row:hover .step-remove-btn {
      opacity: 0.95;
    }

    .add-step-btn:hover {
      box-shadow: 0 6px 20px rgba(47, 107, 255, 0.32);
    }
  }
}

/* ---- Mobile layout shell + round cards (2026) ---- */

body.page-hyrox {
  padding-bottom: 0;
}

.hyrox-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hyrox-rounds-root {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hyrox-round-card {
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
}

.hyrox-round-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem 0.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.hyrox-round-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hyrox-round-title-input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.4rem 0.5rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: var(--radius-xs);
  outline: none;
}

.hyrox-round-title-input:focus {
  background: var(--surface);
  box-shadow: 0 0 0 2px var(--accent-dim);
}

.hyrox-round-body.step-list {
  padding: 0.35rem 0.2rem 0.5rem;
}

.hyrox-stats-empty[hidden] {
  display: none !important;
}

.hyrox-details {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hyrox-details > summary {
  list-style: none;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hyrox-details > summary::-webkit-details-marker {
  display: none;
}

.hyrox-details[open] > summary {
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.hyrox-race-card,
.hyrox-sync-card,
.quick-add-card,
.program-summary-card,
.program-name-card {
  margin-bottom: 0;
}

.hyrox-race-card .ds-card--pad,
.hyrox-sync-card .ds-card--pad,
.quick-add-card .ds-card--pad,
.program-summary-card .ds-card--pad,
.program-name-card .ds-card--pad {
  margin: 0;
}

.hyrox-sync-card .device-sync-btn {
  margin: 0.5rem 0.5rem 0.85rem;
  width: calc(100% - 1rem);
  min-height: 2.75rem;
  max-width: 20rem;
}

.hyrox-sync-card .extras-hint {
  padding: 0.25rem 0.9rem 0.5rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hyrox-bottom-bar {
  z-index: 400;
}

.page-hyrox .toast-container {
  bottom: max(4.5rem, calc(3.5rem + env(safe-area-inset-bottom)));
}

.program-summary-card .ds-section-card__label {
  margin-bottom: 0.35rem;
}

.hyrox-round-title-wrap {
  min-width: 0;
  flex: 1;
}

.hyrox-round-menu-btn {
  flex-shrink: 0;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin: 0 0 0 0.25rem;
  border: 0;
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.12s ease, color 0.12s ease;
}
.hyrox-round-menu-btn:active {
  background: var(--accent-soft);
  color: var(--accent);
}

.hyrox-round-sheet {
  z-index: 500;
  align-items: flex-end;
}

.hyrox-round-sheet__panel {
  padding: 1.1rem 1rem 1.35rem;
  max-width: 28rem;
  margin: 0 auto;
}

.hyrox-round-sheet__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hyrox-round-sheet__meta {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.hyrox-round-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hyrox-round-sheet__actions .ds-btn {
  width: 100%;
  justify-content: center;
}
