/* Feedback-specific styles and overrides */

/* Step indicator color overrides for feedback */

.step-indicator.active {
  background: #168aad;
  color: white;
}

.step-indicator.completed {
  background: #52b69a;
  color: white;
}

.step-indicator.completed:hover {
  background: #168aad;
}

.step-indicator.upcoming {
  background: #d1d5db;
  color: #6b7280;
}

.step-indicator.upcoming:hover {
  background: #99d98c;
  color: #184e77;
}


.step-connector.completed {
  background: #52b69a;
}


/* Option card feedback colors */

.option-card.selected {
  border-color: #168aad;
  background: #d9ed92;
}

/* Form input feedback colors */
.form-input:focus,
.form-textarea:focus {
  border-color: #168aad;
}

/* Feedback-specific checkbox layout */

.checkbox-item:hover,
.checkbox-item.selected {
  border-color: #168aad;
  background: #d9ed92;
}

.checkbox-item input[type="checkbox"] {
  accent-color: #168aad;
}

/* Navigation colors for feedback */
:root {
  --primary: #168aad;
  --primary-hover: #1e6091;
  --primary-foreground: white;
}

/* Summary components for feedback */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.summary-section {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
}

.summary-section h3 {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
}

.summary-value {
  color: #374151;
  font-weight: 600;
}

/* Success card for feedback */
.success-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #d9ed92 0%, #b5e48c 100%);
  border-radius: 12px;
  margin: 1.5rem 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #168aad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

/* 4G model specific styling */
.model-4g {
  background: #d9ed92;
  border: 2px solid #168aad;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.model-4g h4 {
  margin: 0 0 1rem 0;
  color: #184e77;
  font-size: 1.2rem;
  font-weight: 600;
}

.model-4g-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.model-4g-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #184e77;
  font-weight: 500;
}

.model-4g-item::before {
  content: "✓";
  color: #168aad;
  font-weight: 600;
}

/* Mobile responsive overrides */
@media (max-width: 768px) {
  .wizard-container {
    padding: 1rem 0;
  }

  .wizard-title {
    font-size: 2rem;
  }

  .step-progress {
    gap: 0.5rem;
  }

  .step-indicator {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .step-connector {
    width: 20px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .model-4g-items {
    grid-template-columns: 1fr;
  }
}

/* Option grid layout */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}

/* Checkbox grid layout */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.checkbox-item {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-item:hover {
  border-color: #b5e48c;
  box-shadow: 0 4px 15px rgba(181, 228, 140, 0.2);
  transform: translateY(-1px);
}

.checkbox-item.selected {
  border-color: #168aad;
  background: rgba(217, 237, 146, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}