/* General Reset */
.mpb-container * {
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

.mpb-container {
  max-width: 900px;
  margin: auto;
  background: #fffaf5;
  padding: 30px;
  border-radius: 20px;
}

.mpb-step {
  display: none;
}

.mpb-step.active {
  display: block;
}

.mpb-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}

.mpb-card {
  flex: 1 1 200px;
  background: #fef4ec;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
}

.mpb-card:hover {
  border-color: #f78b5f;
}

.mpb-card.active {
  border-color: #f78b5f;
  background: #fff1e4;
}

.mpb-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f25c3d;
  color: white;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 5px;
}

.mpb-navigation {
  text-align: center;
  margin-top: 30px;
}

.mpb-button {
  padding: 12px 30px;
  border: none;
  border-radius: 999px;
  background: #f78b5f;
  color: white;
  font-weight: bold;
  margin: 10px;
  cursor: pointer;
}

.mpb-button.disabled {
  background: #ddd;
  cursor: not-allowed;
}

.mpb-summary {
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.mpb-summary h3 {
  margin-top: 0;
}

.mpb-edit, .mpb-member {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.mpb-edit {
  border: 1px solid #888;
  color: #333;
}

.mpb-member {
  background: #f25c3d;
  color: white;
}
