/* Functionering-specific styles with nature blue-green theme */

/* Functionering-specific color overrides */
.step-indicator.active {
  background: #168aad;
  color: white;
}

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

.step-indicator.upcoming:not([style*="opacity: 0.6"]):hover {
  background: #99d98c;
  color: #184e77;
}

.step-indicator:hover {
  box-shadow: 0 4px 12px rgba(22, 138, 173, 0.3);
}

.step-indicator:focus {
  box-shadow: 0 0 0 3px rgba(22, 138, 173, 0.3);
}

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

/* Form focus colors */

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #168aad;
}

/* Option card colors */

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

/* Functionering-specific conversation elements */
.conversation-element {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.conversation-element:hover {
  border-color: #168aad;
  background: #f0f9ff;
}

.conversation-element.selected {
  border-color: #168aad;
  background: #f0f9ff;
}

.conversation-element-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.conversation-element-description {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Navigation button colors */
.nav-button {
  background: #168aad;
}

.nav-button:hover {
  background: #1a759f;
}

.nav-button.secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.nav-button.secondary:hover {
  background: #e5e7eb;
}

/* Functionering-specific prompt display */
.prompt-display {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
}

.prompt-text {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d3748;
  margin: 0;
  white-space: pre-wrap;
}

.copy-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #168aad;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-button:hover {
  background: #1a759f;
}

/* Functionering-specific platform recommendations */
.platform-card:hover {
  border-color: #168aad;
  box-shadow: 0 4px 12px rgba(22, 138, 173, 0.1);
}

.platform-features li::before {
  content: "•";
  color: #168aad;
  margin-right: 0.5rem;
}

.platform-button {
  background: #168aad;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.platform-button:hover {
  background: #1a759f;
}

/* Functionering-specific tips section */
.tips-section {
  background: #f0fdf4;
  border: 2px solid #76c893;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.tips-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
  color: #184e77;
  font-weight: 600;
}

.tips-list li {
  color: #184e77;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tip-number {
  background: #52b69a;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Checkbox colors */
.checkbox-item:hover,
.checkbox-item.selected {
  border-color: #168aad;
  background: #f0f9ff;
}

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

/* Compact option cards for functionering */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  align-items: start;
}

.option-card:hover {
  border-color: #168aad;
  box-shadow: 0 4px 15px rgba(22, 138, 173, 0.2);
  transform: translateY(-1px);
}

.option-card.selected {
  border-color: #168aad;
  background: #f0f9ff;
  box-shadow: 0 4px 15px rgba(22, 138, 173, 0.3);
}

.option-card-icon {
  font-size: 2rem;
  grid-row: 1 / 3;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
}

.option-card-title {
  grid-row: 1;
  grid-column: 2;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  align-self: end;
}

.option-card-description {
  grid-row: 2;
  grid-column: 2;
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .option-cards {
    grid-template-columns: 1fr;
  }
  
  .option-card {
    padding: 0.875rem;
    gap: 0.375rem 0.875rem;
  }
  
  .option-card-icon {
    font-size: 1.75rem;
    width: 40px;
  }
  
  .option-card-title {
    font-size: 0.9rem;
  }
  
  .option-card-description {
    font-size: 0.8rem;
  }
}