/* css/confirm.css */

.confirm-card form {
  text-align: center;
}

.conversation {
  margin: 1.5rem 1rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  color: #15323b;
}

.conversation strong {
  color: #000;
}

/* css/confirm.css */

.conversation {
  margin: 0rem 1rem;  /* more breathing room above & below */
  margin-bottom: 1rem;
}

.btn-inline {
  /* override the full-width button */
  display: inline-block;
  width: auto;
  padding: 0.75em 1.5em;
  margin: 0 0.25em;
  vertical-align: middle;
}
/* css/confirm.css */

/* wrap buttons in a flex container */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;           /* space between buttons */
  margin-top: 1.5rem;  /* adjustable space above buttons */
}

/* make each button smaller and auto-width */
.btn-inline {
  flex: 1;             /* share available width equally */
  max-width: 140px;    /* cap how wide they get */
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
