/* ==========================================
   STARTING WIZARD STYLES
   ========================================== */

.starting-wizard-content {
  padding: 40px;
  text-align: center;
}


/* Create Type Choice */
.create-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* 4-card variant: 2x2 grid with tighter cards */
.create-type-options-4 {
  gap: 14px;
}
.create-type-options-4 .create-type-card {
  padding: 24px 12px;
}
.create-type-options-4 .create-type-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}
.create-type-options-4 .create-type-icon svg {
  width: 30px;
  height: 30px;
}
.create-type-options-4 .create-type-label {
  font-size: 18px;
}

/* Small textarea for direct create (daily/weekly) */
.simple-create-textarea-sm {
  height: 80px;
  min-height: 60px;
  resize: vertical;
}

.wizard-list-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.wizard-list-item input {
  width: 100%;
}
.wizard-list-add-btn {
  background: none;
  border: 1.5px dashed #cbd5e1;
  border-radius: 8px;
  color: #64748b;
  font-size: 13px;
  padding: 6px 12px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.15s;
}
.wizard-list-add-btn:hover {
  border-color: #94a3b8;
  color: #475569;
  background: #f8fafc;
}

.create-type-back {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.create-type-mode-switch {
  margin-top: 14px;
  text-align: center;
}
.create-type-mode-switch a,
.classic-mode-switch a {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
}
.create-type-mode-switch a:hover,
.classic-mode-switch a:hover {
  color: #64748b;
  text-decoration: underline;
}

.classic-mode-switch {
  margin-top: 16px;
  margin-bottom: 4px;
  text-align: right;
}

.create-type-card {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.create-type-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.create-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  color: #667eea;
}

.create-type-icon svg {
  width: 44px;
  height: 44px;
}

.create-type-label {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.create-type-sublabel {
  font-size: 14px;
  color: #64748b;
}

/* Simple Create Form */
.wizard-step-content {
  /* max-width controlled by .modal-wrapper */
}

.wizard-items-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  margin: 16px 0 20px;
}

.wizard-items-summary-icon {
  color: #16a34a;
  display: flex;
  flex-shrink: 0;
}

.wizard-items-summary-count {
  font-size: 22px;
  font-weight: 700;
  color: #15803d;
  line-height: 1;
}

.wizard-items-summary-label {
  font-size: 14px;
  font-weight: 500;
  color: #166534;
}

.simple-create-textarea {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 20px;
}

.simple-create-textarea:focus {
  outline: none;
  border-color: #667eea;
}

.simple-create-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.simple-create-actions .btn,
.create-type-back .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gentle-category-choice {
  margin: 16px 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.category-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s;
}

.category-trigger:hover {
  background: #f1f5f9;
}

#categoryLabel {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.category-trigger-hint {
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 1px;
}

.category-radios {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.gentle-category-choice.expanded .category-radios {
  max-height: 260px;
}

.category-radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  color: #475569;
  border-top: 1px solid #e2e8f0;
  transition: background 0.15s;
}

.category-radios label:hover {
  background: #f8fafc;
}

.wizard-back-link {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  cursor: pointer;
}

.wizard-back-link:hover {
  color: #5568d3;
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .starting-wizard-content {
    padding: 20px;
  }

  .create-type-options {
    grid-template-columns: 1fr;
  }

  .create-type-icon {
    width: 72px;
    height: 72px;
  }

  .create-type-icon svg {
    width: 36px;
    height: 36px;
  }
}

