/* Commands Section Styling */
.commands-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.command-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.command-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.command-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.command-header h3 {
  margin: 0;
  font-family: 'Monaco', 'Menlo', monospace;
  color: #1e293b;
  font-size: 1.1rem;
}

.command-badge {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.command-details {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.command-details ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.command-details li {
  margin: 0.25rem 0;
  color: #64748b;
}

.workflow-example {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  border: 2px solid #3b82f6;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.step-number {
  background: #3b82f6;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 0.5rem 0;
  color: #1e293b;
}

.step-commands {
  font-family: 'Monaco', 'Menlo', monospace;
  background: #1e293b;
  color: #f1f5f9;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.workflow-arrow {
  font-size: 2rem;
  color: #3b82f6;
  font-weight: bold;
}

.workflow-note {
  text-align: center;
  background: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  color: #065f46;
}

@media (max-width: 768px) {
  .workflow-steps {
    flex-direction: column;
  }
  
  .workflow-arrow {
    transform: rotate(90deg);
  }
  
  .command-grid {
    grid-template-columns: 1fr;
  }
}
