* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

/* Brand button — Bootstrap can't own this */
.btn-brand {
  background-color: #ff5722;
  border: none;
  outline: none;
  padding: 0.75rem 2rem;
  color: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}
.btn-brand:hover {
  background-color: #fa420a;
}

.js-header img {
  width: 100%;
  max-width: 450px;
}

.js-footer {
  background-color: lightgray;
}

.js-body-content {
  max-width: 780px;
  margin: 0 auto;
}
.js-content p {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Gap between donation buttons */
.js-btn-group {
  gap: 1rem;
}

/* Plan tabs */
.plan-tab {
  border: none;
  background: none;
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}
.plan-tab.active {
  background: #fff;
  color: #212529;
  border: 1px solid #dee2e6;
}
.plan-tab:focus,
.plan-tab:active {
  outline: none;
  box-shadow: none !important;
}

/* Amount buttons */
.btn-amount {
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-amount:hover {
  border-color: #ff5722;
  color: #ff5722;
}
.btn-amount.selected {
  background-color: #fff3f0;
  border-color: #ff5722;
  color: #ff5722;
}

/* Summary pill */
.summary-pill {
  background-color: #fff3f0;
  color: #ff5722;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Form fields */
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #ff5722;
}
