/* Custom styles for kubectl cheat sheet and other blogs */
.kubectl-cheat-sheet-content {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  color: #1f2937;
}

.command-box {
  background: #0d1117;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Courier New', monospace;
  border: 1px solid #30363d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow-x: auto;
}

.command-box code {
  color: #e6edf3;
  font-size: 13px;
  display: block;
  white-space: pre;
  word-break: normal;
  line-height: 1.6;
  font-weight: 400;
}

.pro-tip {
  background: #f8fafc;
  border: 4px solid #f59e0b;
  padding: 16px;
  margin: 20px 0;
  border-radius: 8px;
}

.pro-tip strong {
  color: #92400e;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.warning-box {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
  padding: 16px;
  margin: 20px 0;
  border-radius: 4px;
}

.warning-box strong {
  color: #991b1b;
  display: block;
  margin-bottom: 8px;
}

.scenario-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.scenario-card h3 {
  color: #1e40af;
  margin-bottom: 16px;
  font-size: 20px;
}

.use-case-list {
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: 16px 20px;
  margin: 16px 0;
}

.use-case-list li {
  margin-bottom: 8px;
  color: #1e40af;
}

.kubectl-section {
  margin: 40px 0;
}

.kubectl-section h2 {
  color: #111827;
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #667eea;
}

.kubectl-section h3 {
  color: #374151;
  font-size: 22px;
  margin: 24px 0 16px;
}

.output-example {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 16px;
  margin: 16px 0;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #374151;
  overflow-x: auto;
}

.best-practice-box {
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.best-practice-box strong {
  color: #065f46;
  display: block;
  margin-bottom: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  text-align: left;
}

.comparison-table th {
  background: #f3f4f6;
  font-weight: 600;
  color: #374151;
}

.comparison-table tr:nth-child(even) {
  background: #f9fafb;
}

.quick-reference {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  padding: 16px;
  margin: 20px 0;
  border-radius: 8px;
}

.quick-reference h4 {
  color: #92400e;
  margin-bottom: 12px;
}

.troubleshooting-tip {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  padding: 16px;
  margin: 16px 0;
  border-radius: 4px;
}

.troubleshooting-tip strong {
  color: #991b1b;
  display: block;
  margin-bottom: 8px;
}

