body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0fdf4;
  color: #1e293b;
  text-align: center;
}

h1 {
  font-size: 32px;
  margin: 20px 0 0;
}

.sub {
  color: #64748b;
  margin-bottom: 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.large {
  flex: 1 1 600px;
  max-width: 700px;
}

.small {
  flex: 1 1 300px;
  max-width: 320px;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.progress-bar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}
.progress-bar > div {
  height: 100%;
  background: #10b981;
  transition: width 0.3s;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.btn.dark {
  background: #0f172a;
  color: white;
}
.btn.green {
  background: #22c55e;
  color: white;
}
.btn.red {
  background: #ef4444;
  color: white;
  width: 100%;
}
.btn.outline {
  background: #f9fafb;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.btn:hover {
  opacity: 0.9;
}

.danger-zone {
  margin-top: 10px;
}

.number-row {
  text-align: left;
  margin-bottom: 12px;
}

.green-icon {
  color: #10b981;
  margin-right: 6px;
}

.next {
  background: #1e3a8a;
  color: white;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 10px;
  margin-left: 6px;
}

.progress-line {
  background: #e5e7eb;
  height: 6px;
  border-radius: 6px;
  margin: 6px 0;
}
.progress-line > div {
  height: 100%;
  background: #10b981;
  width: 33.3%;
}

.note {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #64748b;
}

.config-number {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  background: #e2e8f0;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 13px;
  margin-left: 10px;
}

.delete-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  resize: none;
}

input[type="text"], input[type="number"] {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin: 8px 0;
  font-size: 15px;
}

.helper {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
  text-align: left;
}

.full {
  width: 100%;
  margin-top: 15px;
}

