/* Gachi stylesheet: stakes.css. Stakes builder (step 5) and create bottom actions. */
/* Extracted verbatim from index.html. Load order is significant; see styles/README.md. */

/* ------------------------------ */
/* Stakes Builder */
/* ------------------------------ */
.stake-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stake-section {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stake-section::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 26px;
  bottom: -10px;
  border-radius: 36px;
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 0;
}

.stake-section > * {
  position: relative;
  z-index: 1;
}

.stake-section + .stake-section {
  margin-top: 4px;
  padding-top: 5px;
}

.stake-section[data-stake-section="penalty"] {
  margin-top: 1px;
  padding-top: 2px;
  gap: 8px;
}

#step-5-screen .stake-section[data-stake-section="reward"]::before {
  left: -5%;
  right: -5%;
  top: 18px;
  bottom: -14px;
  opacity: 1;
  background:
    radial-gradient(ellipse 58% 42% at 50% 48%, rgba(111, 224, 192, 0.16), rgba(111, 224, 192, 0.06) 44%, transparent 76%),
    radial-gradient(ellipse 112% 76% at 50% 50%, rgba(82, 172, 160, 0.08), transparent 72%);
}

#step-5-screen .stake-section[data-stake-section="penalty"]::before {
  left: -3%;
  right: -3%;
  top: 34px;
  bottom: -18px;
  opacity: 1;
  background:
    radial-gradient(ellipse 58% 40% at 50% 38%, rgba(23, 14, 9, 0.3), rgba(23, 14, 9, 0.16) 42%, transparent 74%),
    radial-gradient(ellipse 94% 74% at 50% 48%, rgba(72, 49, 31, 0.12), transparent 76%);
}

#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card {
  overflow: hidden;
  border-color: rgba(118, 90, 64, 0.62);
}

#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background:
    radial-gradient(circle at 50% 34%, rgba(74, 48, 30, 0.28), transparent 28%),
    radial-gradient(circle at 50% 34%, rgba(126, 92, 60, 0.12), transparent 48%);
  opacity: 0.78;
  pointer-events: none;
}

#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card .choice-icon,
#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card .choice-title {
  position: relative;
  z-index: 1;
}

#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card .choice-icon {
  text-shadow: 0 0 8px rgba(139, 96, 58, 0.14);
}

#step-5-screen .stake-section[data-stake-section="penalty"]:has(.stake-card.is-added) .stake-card:not(.is-added)::before {
  opacity: 0;
}

#step-5-screen .stake-section[data-stake-section="penalty"]:has(.stake-card.is-added) .stake-card:not(.is-added) {
  border-color: var(--border);
}

#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card:not(.is-selected):not(.is-added) {
  box-shadow:
    var(--button-shadow),
    inset 0 3px 10px rgba(18, 10, 7, 0.22),
    inset 0 -2px 0 rgba(255, 241, 224, 0.04),
    inset 0 0 0 1px rgba(214, 186, 156, 0.16),
    inset 0 -14px 22px rgba(24, 14, 9, 0.18),
    0 5px 4px rgba(4, 18, 22, 0.18),
    0 11px 14px rgba(4, 18, 22, 0.1);
}

#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card:not(.is-selected):not(.is-added):hover,
#step-5-screen .stake-section[data-stake-section="penalty"] .stake-card:not(.is-selected):not(.is-added):focus-visible {
  border-color: rgba(146, 112, 82, 0.72);
  box-shadow:
    var(--button-shadow-hover),
    inset 0 4px 12px rgba(18, 10, 7, 0.24),
    inset 0 -2px 0 rgba(255, 241, 224, 0.05),
    inset 0 0 0 1px rgba(226, 198, 167, 0.22),
    inset 0 -16px 24px rgba(24, 14, 9, 0.22),
    0 6px 5px rgba(4, 18, 22, 0.2),
    0 13px 16px rgba(4, 18, 22, 0.11);
}

#step-5-screen .stake-section[data-stake-section="penalty"]:has(.stake-card.is-added) .stake-card:not(.is-selected):not(.is-added) {
  box-shadow:
    var(--button-shadow),
    0 5px 4px rgba(4, 18, 22, 0.18),
    0 11px 14px rgba(4, 18, 22, 0.1);
}

#step-5-screen .stake-section[data-stake-section="penalty"]:has(.stake-card.is-added) .stake-card:not(.is-selected):not(.is-added):hover,
#step-5-screen .stake-section[data-stake-section="penalty"]:has(.stake-card.is-added) .stake-card:not(.is-selected):not(.is-added):focus-visible {
  border-color: rgba(111, 224, 192, 0.4);
  box-shadow:
    var(--button-shadow-hover),
    0 6px 5px rgba(4, 18, 22, 0.2),
    0 13px 16px rgba(4, 18, 22, 0.11);
}

.stake-section-title {
  margin: 0 0 8px;
  color: var(--text-main);
  font-size: clamp(1.02rem, 3.8vw, 1.22rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.stake-shell.is-overlay-active .stake-card.is-selected {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent-soft-strong));
  border-color: rgba(111, 224, 192, 0.5);
  transform: translateY(2px);
  box-shadow:
    inset 0 4px 12px rgba(9, 26, 30, 0.3),
    inset 0 -1px 0 rgba(245, 255, 251, 0.06),
    0 0 0 2px rgba(14, 44, 46, 0.26),
    0 1px 3px rgba(4, 14, 18, 0.08);
}

.stake-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: 7px;
  transition: opacity 160ms ease, filter 160ms ease;
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-grid {
  margin-top: 7px;
  margin-bottom: 3px;
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-card {
  overflow: hidden;
  border-color: rgba(243, 218, 156, 0.46);
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 223, 140, 0.18), transparent 30%),
    radial-gradient(circle at 50% 34%, rgba(255, 232, 182, 0.08), transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-card .choice-icon,
#step-5-screen .stake-section[data-stake-section="reward"] .stake-card .choice-title {
  position: relative;
  z-index: 1;
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-card .choice-icon {
  text-shadow: 0 0 8px rgba(255, 214, 120, 0.14);
}

#step-5-screen .stake-section[data-stake-section="reward"]:has(.stake-card.is-added) .stake-card:not(.is-added)::before {
  opacity: 0;
}

#step-5-screen .stake-section[data-stake-section="reward"]:has(.stake-card.is-added) .stake-card:not(.is-added) {
  border-color: var(--border);
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-card:not(.is-selected):not(.is-added) {
  box-shadow:
    var(--button-shadow),
    inset 0 0 0 1px rgba(255, 239, 198, 0.18),
    inset 0 -12px 18px rgba(96, 72, 20, 0.05),
    0 5px 4px rgba(4, 18, 22, 0.18),
    0 11px 14px rgba(4, 18, 22, 0.1);
}

#step-5-screen .stake-section[data-stake-section="reward"] .stake-card:not(.is-selected):not(.is-added):hover,
#step-5-screen .stake-section[data-stake-section="reward"] .stake-card:not(.is-selected):not(.is-added):focus-visible {
  border-color: rgba(255, 227, 154, 0.58);
  box-shadow:
    var(--button-shadow-hover),
    inset 0 0 0 1px rgba(255, 244, 214, 0.24),
    inset 0 -14px 22px rgba(96, 72, 20, 0.07),
    0 6px 5px rgba(4, 18, 22, 0.2),
    0 13px 16px rgba(4, 18, 22, 0.11);
}

#step-5-screen .stake-section[data-stake-section="reward"]:has(.stake-card.is-added) .stake-card:not(.is-selected):not(.is-added) {
  box-shadow:
    var(--button-shadow),
    0 5px 4px rgba(4, 18, 22, 0.18),
    0 11px 14px rgba(4, 18, 22, 0.1);
}

#step-5-screen .stake-section[data-stake-section="reward"]:has(.stake-card.is-added) .stake-card:not(.is-selected):not(.is-added):hover,
#step-5-screen .stake-section[data-stake-section="reward"]:has(.stake-card.is-added) .stake-card:not(.is-selected):not(.is-added):focus-visible {
  border-color: rgba(111, 224, 192, 0.4);
  box-shadow:
    var(--button-shadow-hover),
    0 6px 5px rgba(4, 18, 22, 0.2),
    0 13px 16px rgba(4, 18, 22, 0.11);
}

.stake-section[data-stake-section="reward"] .stake-grid + .stake-workspace {
  margin-top: 4px;
}

.stake-section[data-stake-section="penalty"] .stake-grid + .stake-workspace {
  margin-top: 7px;
}

.stake-workspace {
  min-height: 34px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-inline: 7px;
}

.stake-overlay-workspace {
  min-height: 0;
}

.stake-overlay {
  position: absolute;
  top: var(--floater-top);
  left: 50%;
  z-index: 3;
  width: min(calc(100% - (var(--shell-gutter) * 2)), 340px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stake-overlay-card {
  pointer-events: auto;
  border: 1px solid rgba(111, 224, 192, 0.4);
  border-radius: var(--radius-lg);
  background: rgba(18, 51, 61, 0.96);
  box-shadow: 0 20px 34px rgba(4, 14, 18, 0.42);
  backdrop-filter: blur(14px);
  padding: 14px;
}

.stake-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.stake-overlay-title {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stake-close-button {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
}

.stake-input-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  min-height: 56px;
  padding: 0 68px 0 14px;
  border: 1px solid rgba(111, 224, 192, 0.22);
  border-radius: 16px;
  background: rgba(9, 28, 35, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.stake-input-row input {
  min-width: 0;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.stake-input-row input::placeholder {
  font-size: 0.88rem;
}

.stake-input-row:focus-within {
  border-color: rgba(111, 224, 192, 0.52);
  box-shadow: 0 0 0 3px rgba(111, 224, 192, 0.12);
  background: rgba(12, 35, 43, 0.74);
}

.custom-goal-input-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 8px;
  align-items: start;
  width: 100%;
}

.custom-goal-title-row {
  min-width: 0;
  min-height: 50px;
}

.custom-goal-title-row input {
  min-height: 48px;
}

.custom-goal-emoji-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 0;
  min-height: 50px;
  border: 1px solid rgba(111, 224, 192, 0.22);
  border-radius: 16px;
  background: rgba(9, 28, 35, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.custom-goal-emoji-row:focus-within {
  border-color: rgba(111, 224, 192, 0.52);
  box-shadow: 0 0 0 3px rgba(111, 224, 192, 0.12);
  background: rgba(12, 35, 43, 0.74);
}

.custom-goal-emoji-input {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
  outline: none;
  box-shadow: none;
}

.stake-input-row .invite-intro-counter {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.stake-input-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.stake-add-button {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(140, 238, 211, 0.28);
  background: var(--primary-button-bg);
  color: #12333b;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--primary-button-shadow);
}

.stake-add-button:hover,
.stake-add-button:focus-visible {
  transform: translateY(1px);
  background: var(--primary-button-bg-hover);
  box-shadow: var(--primary-button-shadow-hover);
}

.stake-add-button:active {
  background: var(--primary-button-bg-pressed);
  box-shadow: var(--primary-button-shadow-pressed);
}

.stake-add-button:disabled {
  opacity: 0.5;
  cursor: default;
}

.stake-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0;
}

.stake-list[hidden] {
  display: none !important;
}

.stake-entry {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 33px;
  padding: 0 10px;
  border: 1px solid rgba(111, 224, 192, 0.18);
  border-radius: var(--radius-md);
  background: rgba(24, 59, 70, 0.26);
  box-shadow: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.stake-entry.is-empty {
  border-style: solid;
  border-color: rgba(111, 224, 192, 0.1);
  background: rgba(15, 41, 49, 0.14);
  min-height: 33px;
}

.stake-entry--reward {
  border-color: rgba(243, 218, 156, 0.4);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 241, 205, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(67, 58, 31, 0.14), rgba(24, 59, 70, 0.26));
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 226, 0.1),
    inset 0 0 0 1px rgba(255, 239, 198, 0.16),
    inset 0 -10px 16px rgba(113, 86, 26, 0.08),
    0 0 0 1px rgba(243, 218, 156, 0.2);
}

.stake-entry--penalty {
  border-color: rgba(118, 90, 64, 0.54);
  background:
    radial-gradient(circle at 30% 24%, rgba(78, 54, 34, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(19, 16, 14, 0.26), rgba(24, 59, 70, 0.24));
  box-shadow:
    inset 0 2px 8px rgba(18, 10, 7, 0.18),
    inset 0 -1px 0 rgba(255, 241, 224, 0.03),
    inset 0 0 0 1px rgba(214, 186, 156, 0.12),
    inset 0 -12px 18px rgba(20, 12, 8, 0.14),
    0 0 0 1px rgba(118, 90, 64, 0.2);
}

.stake-entry-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  text-align: left;
}

.stake-entry-mainline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  width: 100%;
}

.stake-entry-label,
.stake-entry-value {
  margin: 0;
}

.stake-entry-label {
  color: rgba(237, 247, 245, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.stake-entry-separator {
  color: rgba(237, 247, 245, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
}

.stake-entry-value {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: rgba(190, 216, 212, 0.72);
}

.stake-entry.is-empty .stake-entry-label,
.stake-entry.is-empty .stake-entry-value {
  color: rgba(190, 216, 212, 0.56);
}

.stake-entry.is-empty .stake-entry-label {
  font-weight: 600;
  opacity: 0.38;
}

.stake-entry.is-empty .stake-entry-copy {
  gap: 0;
}

.stake-entry.is-empty .custom-prefix {
  color: rgba(190, 216, 212, 0.44);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.option-input-row span {
  font-weight: 600;
}

.primary-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.primary-button {
  border: 1px solid rgba(140, 238, 211, 0.28);
  background: var(--primary-button-bg);
  color: #12333b;
  box-shadow: var(--primary-button-shadow);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(1px);
  background: var(--primary-button-bg-hover);
  box-shadow: var(--primary-button-shadow-hover);
}

.primary-button:active {
  background: var(--primary-button-bg-pressed);
  box-shadow: var(--primary-button-shadow-pressed);
}

.primary-button:disabled,
.primary-button.is-disabled {
  border-color: var(--border);
  color: var(--text-main);
  background: rgba(13, 39, 47, 0.46);
  box-shadow: inset 0 2px 8px rgba(4, 14, 18, 0.24), inset 0 -1px 0 rgba(255, 255, 255, 0.06), 0 2px 6px rgba(4, 14, 18, 0.12);
  transform: none;
  opacity: 1;
}

.primary-button:disabled:hover,
.primary-button:disabled:focus-visible,
.primary-button:disabled:active,
.primary-button.is-disabled:hover,
.primary-button.is-disabled:focus-visible,
.primary-button.is-disabled:active {
  transform: none;
  background: rgba(13, 39, 47, 0.46);
  box-shadow: inset 0 2px 8px rgba(4, 14, 18, 0.24), inset 0 -1px 0 rgba(255, 255, 255, 0.06), 0 2px 6px rgba(4, 14, 18, 0.12);
}

.primary-button:disabled {
  cursor: not-allowed;
}

.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    var(--primary-button-shadow),
    0 7px 5px rgba(4, 18, 22, 0.18),
    0 15px 18px rgba(4, 18, 22, 0.14);
  animation: confirmCtaPulse 4.8s ease-in-out infinite;
}

.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled):hover,
.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled):focus-visible {
  box-shadow:
    var(--primary-button-shadow-hover),
    0 8px 6px rgba(4, 18, 22, 0.28),
    0 17px 20px rgba(4, 18, 22, 0.16);
}

.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled):active {
  box-shadow:
    var(--primary-button-shadow-pressed),
    0 4px 4px rgba(4, 18, 22, 0.24),
    0 9px 12px rgba(4, 18, 22, 0.12);
}

.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled)::before,
.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled)::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px);
  opacity: 0;
}

.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled)::before {
  inset: -44% -58%;
  background:
    linear-gradient(
      115deg,
      transparent 35%,
      rgba(255, 255, 255, 0.1) 44%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.12) 56%,
      transparent 65%
    );
  transform: translateX(-58%) rotate(0.001deg);
  animation: confirmCtaShimmerPrimary 4.8s ease-in-out infinite;
}

.primary-button.is-confirm-cta:not(:disabled):not(.is-disabled)::after {
  inset: -50% -64%;
  background:
    linear-gradient(
      65deg,
      transparent 38%,
      rgba(255, 255, 255, 0.08) 46%,
      rgba(255, 255, 255, 0.38) 51%,
      rgba(255, 255, 255, 0.1) 57%,
      transparent 66%
    );
  transform: translateX(56%) rotate(0.001deg);
  animation: confirmCtaShimmerSecondary 4.8s ease-in-out infinite;
}

.form-actions [data-next-step]:not(.is-disabled):not(:disabled) {
  overflow: hidden;
  isolation: isolate;
}

.form-actions [data-next-step]:not(.is-disabled):not(:disabled)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 34%,
      rgba(255, 255, 255, 0.1) 44%,
      rgba(255, 255, 255, 0.44) 50%,
      rgba(255, 255, 255, 0.12) 57%,
      transparent 66%
    ),
    linear-gradient(
      65deg,
      transparent 38%,
      rgba(255, 255, 255, 0.08) 47%,
      rgba(255, 255, 255, 0.3) 52%,
      rgba(255, 255, 255, 0.1) 58%,
      transparent 67%
    );
  background-size: 230% 230%, 230% 230%;
  background-position: -130% 50%, 230% 50%;
  opacity: 0;
  mix-blend-mode: screen;
  animation: createNextButtonReadyShimmer 5.4s ease-in-out infinite;
  animation-delay: 10s;
}

@keyframes createNextButtonReadyShimmer {
  0%, 12%, 72%, 100% {
    opacity: 0;
    background-position: -130% 50%, 230% 50%;
  }
  24% {
    opacity: 0.58;
  }
  38% {
    opacity: 0.9;
  }
  58% {
    opacity: 0.52;
  }
  68% {
    opacity: 0;
    background-position: 230% 50%, -130% 50%;
  }
}

@keyframes confirmCtaShimmerPrimary {
  0%, 62%, 100% {
    opacity: 0;
    transform: translateX(-58%) rotate(0.001deg);
  }
  12% {
    opacity: 0.7;
  }
  24% {
    opacity: 0.98;
  }
  42% {
    opacity: 0.7;
  }
  54% {
    opacity: 0;
    transform: translateX(58%) rotate(0.001deg);
  }
}

@keyframes confirmCtaShimmerSecondary {
  0%, 8%, 72%, 100% {
    opacity: 0;
    transform: translateX(56%) rotate(0.001deg);
  }
  20% {
    opacity: 0.5;
  }
  32% {
    opacity: 0.78;
  }
  50% {
    opacity: 0.45;
  }
  62% {
    opacity: 0;
    transform: translateX(-56%) rotate(0.001deg);
  }
}

@keyframes confirmCtaPulse {
  0%, 8%, 58%, 100% {
    translate: 0 0;
  }
  14%, 30%, 46% {
    translate: 0.7px 0;
  }
  22%, 38%, 52% {
    translate: -0.7px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-actions [data-next-step]:not(.is-disabled):not(:disabled)::after {
    animation: none;
  }

  .primary-button.is-confirm-cta:not(:disabled):not(.is-disabled),
  .primary-button.is-confirm-cta:not(:disabled):not(.is-disabled)::before,
  .primary-button.is-confirm-cta:not(:disabled):not(.is-disabled)::after {
    animation: none;
  }
}

.secondary-link {
  border: 1px solid var(--border);
  color: var(--text-main);
  background: rgba(13, 39, 47, 0.46);
  box-shadow: inset 0 2px 8px rgba(4, 14, 18, 0.24), inset 0 -1px 0 rgba(255, 255, 255, 0.06), 0 2px 6px rgba(4, 14, 18, 0.12);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  transform: translateY(3px);
  box-shadow: inset 0 2px 9px rgba(4, 14, 18, 0.26), inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 3px 8px rgba(4, 14, 18, 0.14);
}

.secondary-link:disabled {
  border-color: rgba(163, 227, 211, 0.1);
  background: rgba(13, 39, 47, 0.22);
  color: rgba(190, 216, 212, 0.38);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 1;
}

.secondary-link:disabled:hover,
.secondary-link:disabled:focus-visible,
.secondary-link:disabled:active {
  transform: none;
  box-shadow: none;
  background: rgba(13, 39, 47, 0.22);
}

.form-actions {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: var(--viewport-bottom-offset);
  --bottom-bar-underfill: var(--viewport-bottom-offset);
  width: min(calc(100% - (var(--shell-gutter) * 2) - var(--safe-left) - var(--safe-right)), var(--app-max-width));
  transform: translateX(-50%);
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding-top: 4px;
  padding-left: calc(var(--screen-padding-x) + var(--safe-left));
  padding-right: calc(var(--screen-padding-x) + var(--safe-right));
  padding-bottom: max(10px, calc(var(--safe-bottom) + var(--native-bottom-reserve) + 8px));
  background: var(--surface-solid);
  box-shadow: none;
}

.form-actions::before,
.dashboard-bottom-nav::before,
#summary-response-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-1 * var(--bottom-bar-underfill));
  height: var(--bottom-bar-underfill);
  background: var(--bottom-bar-solid-fill);
  pointer-events: none;
}

.form-actions > *,
.dashboard-bottom-nav > *,
.invite-response-block > *,
#summary-response-block > * {
  position: relative;
  z-index: 1;
}

.screen[data-screen="step-1"],
.screen[data-screen="step-2"],
.screen[data-screen="step-3"],
.screen[data-screen="step-5"],
.screen[data-screen="step-6"],
.screen[data-screen="official-challenges"],
.screen[data-screen="official-summary"] {
  padding-bottom: calc(76px + var(--safe-bottom) + var(--native-bottom-reserve));
}

.screen[data-screen="challenge-detail"] {
  padding-bottom: 0;
}

.screen[data-screen="step-6"] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0;
  overflow-y: hidden;
  padding-bottom: 0;
}

.screen[data-screen="official-summary"] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0;
  overflow-y: hidden;
  padding-bottom: 0;
}

.screen[data-screen="step-6"].has-summary-response .progress-block {
  display: none;
}

.screen[data-screen="step-6"].has-summary-response {
  grid-template-rows: minmax(0, 1fr) auto;
}

.form-actions > * {
  flex: 1 1 0;
  min-width: 0;
}

.form-actions.create-bottom-actions {
  --create-bottom-top-padding: 10px;
  --create-bottom-actions-gap: 8px;
  --create-bottom-active-arc-size: 58px;
  --create-bottom-active-arc-height: 12px;
  --create-bottom-active-line-top: calc(var(--create-bottom-top-padding) + 4px);
  --create-bottom-press-body-height: 46px;
  --create-bottom-line-color: rgba(255, 248, 226, 0.56);
  --create-bottom-line-width: 2px;
  --create-bottom-line-gap: calc(var(--create-bottom-active-arc-size) + 8px);
  --create-bottom-left-center: calc(25% + (var(--screen-padding-x) / 2) - (var(--create-bottom-actions-gap) / 4));
  --create-bottom-right-center: calc(75% - (var(--screen-padding-x) / 2) + (var(--create-bottom-actions-gap) / 4));
  bottom: var(--viewport-bottom-offset);
  gap: var(--create-bottom-actions-gap);
  padding-top: var(--create-bottom-top-padding);
  background:
    linear-gradient(
      180deg,
      transparent 0,
      transparent var(--create-bottom-active-line-top),
      var(--surface-solid) var(--create-bottom-active-line-top),
      var(--surface-solid) 100%
    );
}

.form-actions.create-bottom-actions:has(> #official-summary-back[hidden]) {
  grid-template-columns: minmax(0, 1fr);
  --create-bottom-right-center: 50%;
}

.form-actions.create-bottom-actions::after {
  content: "";
  position: absolute;
  top: var(--create-bottom-active-line-top);
  left: 50%;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  z-index: 0;
  height: var(--create-bottom-line-width);
  background: var(--create-bottom-line-color);
  pointer-events: none;
  transform: translateX(-50%);
}

.form-actions.create-bottom-actions:has(#complete-challenge-button.is-pressing, #official-summary-accept.is-pressing) {
  --create-bottom-line-gap: calc(127px + 8px);
}

.form-actions.create-bottom-actions:has(#complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled), #official-summary-accept:not(:disabled):not(.is-disabled)) {
  --create-bottom-line-gap: calc(127px + 8px);
}

.form-actions.create-bottom-actions:has(> .primary-button:not(:disabled):not(.is-disabled))::after,
.form-actions.create-bottom-actions:has(> .primary-button.is-pressing)::after {
  background: linear-gradient(
    90deg,
    var(--create-bottom-line-color) 0,
    var(--create-bottom-line-color) calc(var(--create-bottom-right-center) - (var(--create-bottom-line-gap) / 2)),
    transparent calc(var(--create-bottom-right-center) - (var(--create-bottom-line-gap) / 2)),
    transparent calc(var(--create-bottom-right-center) + (var(--create-bottom-line-gap) / 2)),
    var(--create-bottom-line-color) calc(var(--create-bottom-right-center) + (var(--create-bottom-line-gap) / 2)),
    var(--create-bottom-line-color) 100%
  );
}

.form-actions.create-bottom-actions:has(> .secondary-link.is-pressing)::after {
  background: var(--create-bottom-line-color);
}

.create-bottom-actions .secondary-link,
.create-bottom-actions .primary-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  min-height: 50px;
  padding: 6px 8px 5px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: rgba(255, 248, 226, 0.66);
  box-shadow: none;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled) {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled)::before {
  content: "";
  position: absolute;
  top: calc(4px - var(--create-bottom-active-arc-height));
  left: 50%;
  width: var(--create-bottom-active-arc-size);
  height: var(--create-bottom-active-arc-height);
  border: var(--create-bottom-line-width) solid var(--create-bottom-line-color);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.create-bottom-actions [data-next-step]:not(.is-disabled):not(:disabled)::after {
  content: none;
  display: none;
}

.create-bottom-actions [data-next-step]:not(.is-disabled):not(:disabled) {
  overflow: visible;
  isolation: auto;
}

.create-bottom-actions .secondary-link:hover,
.create-bottom-actions .secondary-link:focus-visible,
.create-bottom-actions .primary-button:hover,
.create-bottom-actions .primary-button:focus-visible {
  transform: none;
  background: rgba(163, 227, 211, 0.05);
  box-shadow: none;
  color: rgba(237, 247, 245, 0.82);
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled):hover,
.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled):focus-visible {
  color: var(--accent);
  background: transparent;
}

.create-bottom-actions .primary-button:disabled,
.create-bottom-actions .primary-button.is-disabled {
  border-color: transparent;
  background: transparent;
  color: rgba(190, 216, 212, 0.36);
  box-shadow: none;
}

.create-bottom-actions #complete-challenge-button.is-negotiation-submit:disabled,
.create-bottom-actions #complete-challenge-button.is-negotiation-submit.is-disabled {
  color: var(--accent);
  font-weight: 700;
}

.create-bottom-actions #complete-challenge-button.is-negotiation-submit:not(.is-ready-to-create)::before {
  content: "";
  position: absolute;
  top: calc(4px - var(--create-bottom-active-arc-height));
  left: 50%;
  width: var(--create-bottom-active-arc-size);
  height: var(--create-bottom-active-arc-height);
  border: var(--create-bottom-line-width) solid var(--create-bottom-line-color);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  z-index: 2;
  pointer-events: none;
}

.create-bottom-actions #complete-challenge-button.is-negotiation-submit:not(.is-ready-to-create)::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: var(--create-bottom-active-arc-size);
  height: var(--create-bottom-line-width);
  background: var(--surface-solid);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.create-bottom-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease, color 160ms ease;
}

.create-bottom-label {
  position: relative;
  z-index: 1;
  display: block;
  transform-origin: center;
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled) .create-bottom-icon {
  transform: scale(1.2);
  animation: createBottomNextPulse 2.4s ease-in-out infinite;
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled) .create-bottom-label {
  transform: scale(1.14);
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled),
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) {
  --create-bottom-active-arc-size: 127px;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  isolation: isolate;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled)::before,
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled)::before {
  top: calc(4px - var(--create-bottom-active-arc-height));
  height: var(--create-bottom-active-arc-height);
  border: var(--create-bottom-line-width) solid var(--create-bottom-line-color);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  z-index: 2;
  animation: createBottomCompleteArcIn 260ms ease-out both;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled)::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  animation: none;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled)::after,
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled)::after {
  content: none;
}

.create-bottom-actions #complete-challenge-button .create-bottom-icon,
.create-bottom-actions #official-summary-accept .create-bottom-icon {
  display: none;
}

.create-bottom-actions #complete-challenge-button,
.create-bottom-actions #official-summary-accept {
  --create-bottom-active-arc-size: 127px;
  --create-bottom-press-body-height: 42px;
  align-items: center;
  justify-content: flex-start;
}

.create-bottom-actions #complete-challenge-button .create-bottom-label,
.create-bottom-actions #official-summary-accept .create-bottom-label {
  font-size: 0.72rem;
  line-height: 1.05;
  white-space: nowrap;
  transform: translateY(13px);
}

.create-bottom-actions #complete-challenge-button .create-bottom-label {
  transform: translateY(7px) scale(1.14);
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled) .create-bottom-label,
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) .create-bottom-label {
  transform: translateY(7px) scale(1.14);
}

.create-bottom-frame {
  display: none;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled) .create-bottom-frame,
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) .create-bottom-frame {
  position: absolute;
  top: 4px;
  left: 50%;
  width: calc(var(--create-bottom-active-arc-size) + 2px);
  height: 42px;
  display: block;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  isolation: isolate;
}

.create-bottom-frame svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled) .create-bottom-frame path,
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) .create-bottom-frame path {
  fill: none;
  stroke: var(--create-bottom-line-color);
  stroke-width: var(--create-bottom-line-width);
  stroke-linecap: butt;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: createBottomCompleteFrameDraw 900ms ease-in-out 1s forwards;
}

.create-bottom-actions #complete-challenge-button.is-negotiation-submit.is-ready-to-create:not(:disabled):not(.is-disabled) .create-bottom-frame path {
  animation-delay: 0s;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create:not(:disabled):not(.is-disabled) .create-bottom-label,
.create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) .create-bottom-label {
  z-index: 2;
}

#complete-challenge-button.is-solo-summary-button .create-bottom-label,
#step-6-screen.is-solo-summary .create-bottom-actions #complete-challenge-button .create-bottom-label {
  transform: translateY(7px) scale(1.14);
}

#complete-challenge-button.is-solo-summary-button,
#step-6-screen.is-solo-summary .create-bottom-actions #complete-challenge-button {
  --create-bottom-active-arc-size: 127px;
  align-items: center;
  justify-content: flex-start;
}

.create-bottom-actions #complete-challenge-button.is-solo-summary-button.is-ready-to-create:not(:disabled):not(.is-disabled)::after {
  content: none;
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled):not(.is-invite-link-button)::after {
  content: none;
  display: none;
}

.create-bottom-actions .primary-button:not(:disabled):not(.is-disabled):not(.is-pressing):not(.is-invite-link-button)::before {
  z-index: 2;
}

.create-bottom-sweep {
  display: none;
  position: absolute;
  top: calc(4px - var(--create-bottom-active-arc-height));
  left: 50%;
  width: calc(var(--create-bottom-active-arc-size) + 2px);
  height: calc(42px + var(--create-bottom-active-arc-height));
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: 18px;
  transform: translateX(-50%);
}

.create-bottom-sweep::before {
  content: "";
  position: absolute;
  inset: -46% -60%;
  background: linear-gradient(115deg, transparent 37%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 63%);
  filter: blur(1px);
  opacity: 0;
  transform: translateX(-60%) rotate(0.001deg);
  will-change: transform, opacity;
}

.create-bottom-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow:
    0 2px 6px rgba(4, 14, 18, 0.14),
    0 5px 4px rgba(4, 18, 22, 0.18),
    0 11px 14px rgba(4, 18, 22, 0.1);
  opacity: 0;
  transform: translateY(2px) scaleX(0.96);
  pointer-events: none;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create.is-create-effect-ready:not(:disabled):not(.is-disabled) .create-bottom-sweep,
.create-bottom-actions #official-summary-accept.is-create-effect-ready:not(:disabled):not(.is-disabled):not(.is-invite-link-button) .create-bottom-sweep {
  display: block;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create.is-create-effect-ready:not(:disabled):not(.is-disabled) .create-bottom-sweep::before {
  animation: createBottomButtonSweep 900ms ease-out 1 both;
}

.create-bottom-actions #official-summary-accept.is-create-effect-ready:not(:disabled):not(.is-disabled):not(.is-invite-link-button) .create-bottom-sweep::before {
  animation: officialAcceptButtonPeriodicSweep 10s ease-in-out infinite;
}

.create-bottom-actions #complete-challenge-button.is-ready-to-create.is-create-effect-ready:not(:disabled):not(.is-disabled) .create-bottom-frame::after,
.create-bottom-actions #official-summary-accept.is-create-effect-ready:not(:disabled):not(.is-disabled):not(.is-invite-link-button) .create-bottom-frame::after {
  animation: createBottomButtonBottomShadow 900ms ease-out 1 both;
}

@keyframes createBottomCompleteArcIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.72);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes createBottomCompleteFrameDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes createBottomButtonSweep {
  0% {
    opacity: 0;
    transform: translateX(-60%) rotate(0.001deg);
  }
  14% {
    opacity: 0.28;
  }
  34% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    transform: translateX(0) rotate(0.001deg);
  }
  72% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translateX(60%) rotate(0.001deg);
  }
}

@keyframes officialAcceptButtonPeriodicSweep {
  0%, 100% {
    opacity: 0;
    transform: translateX(-60%) rotate(0.001deg);
  }
  4% {
    opacity: 0.28;
  }
  8% {
    opacity: 1;
    transform: translateX(0) rotate(0.001deg);
  }
  14% {
    opacity: 0;
    transform: translateX(60%) rotate(0.001deg);
  }
}

@keyframes createBottomButtonBottomShadow {
  0%, 45% {
    opacity: 0;
    transform: translateY(2px) scaleX(0.96);
  }
  68% {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes createBottomNextPulse {
  0%, 100% {
    transform: scale(1.17);
    stroke-width: 1.9;
  }
  45% {
    transform: scale(1.27);
    stroke-width: 2.35;
  }
  70% {
    transform: scale(1.21);
    stroke-width: 2.1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .create-bottom-actions .primary-button:not(:disabled):not(.is-disabled) .create-bottom-icon {
    animation: none;
  }

  .create-bottom-actions #complete-challenge-button:not(:disabled):not(.is-disabled)::before,
  .create-bottom-actions #complete-challenge-button:not(:disabled):not(.is-disabled) .create-bottom-frame path,
  .create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled)::before,
  .create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) .create-bottom-frame path {
    animation: none;
  }

  .create-bottom-actions #complete-challenge-button.is-create-effect-ready:not(:disabled):not(.is-disabled) .create-bottom-sweep::before,
  .create-bottom-actions #complete-challenge-button.is-create-effect-ready:not(:disabled):not(.is-disabled) .create-bottom-frame::after,
  .create-bottom-actions #official-summary-accept.is-create-effect-ready:not(:disabled):not(.is-disabled):not(.is-invite-link-button) .create-bottom-sweep::before,
  .create-bottom-actions #official-summary-accept.is-create-effect-ready:not(:disabled):not(.is-disabled):not(.is-invite-link-button) .create-bottom-frame::after {
    animation: none;
  }

  .create-bottom-actions #complete-challenge-button.is-create-effect-ready:not(:disabled):not(.is-disabled) .create-bottom-sweep,
  .create-bottom-actions #official-summary-accept.is-create-effect-ready:not(:disabled):not(.is-disabled):not(.is-invite-link-button) .create-bottom-sweep {
    display: none;
  }

  .create-bottom-actions #complete-challenge-button:not(:disabled):not(.is-disabled) .create-bottom-frame path,
  .create-bottom-actions #official-summary-accept:not(:disabled):not(.is-disabled) .create-bottom-frame path {
    stroke-dashoffset: 0;
  }
}

.create-bottom-actions #official-summary-accept.is-invite-link-button {
  min-width: 0;
  min-height: 50px;
  padding: 6px 8px 5px;
  border-color: transparent;
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  font-size: 0.8rem;
  font-weight: 700;
}

.create-bottom-actions #official-summary-accept.is-invite-link-button .create-bottom-frame,
.create-bottom-actions #official-summary-accept.is-invite-link-button .create-bottom-sweep {
  display: none;
}

.create-bottom-actions #official-summary-accept.is-invite-link-button::after {
  display: none;
}

.create-bottom-actions #official-summary-accept.is-invite-link-button:hover,
.create-bottom-actions #official-summary-accept.is-invite-link-button:focus-visible {
  transform: none;
  background: transparent;
  box-shadow: none;
}

#step-6-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#step-6-actions > * {
  white-space: nowrap;
}

#complete-challenge-button {
  padding-left: 8px;
  padding-right: 8px;
}

