/* CognitixERP Production Deployment Guide — shared shell + deploy-specific styles */
@import url("userGuid.css");

:root {
  --warn-bg: #fff7ed;
  --warn-border: #fdba74;
  --code-bg: #0f172a;
  --code-text: #e2e8f0;
}

.box-warn {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin: 0.85rem 0;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
}

.deploy-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
  background: #fafbfd;
}

.deploy-block h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--brand-blue);
}

.deploy-block p {
  margin: 0 0 0.65rem;
  font-size: 0.93rem;
}

.deploy-block ul,
.deploy-block ol {
  margin: 0.35rem 0 0.75rem;
}

.deploy-block li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
}

/* Numbered steps (manual / wizard lists) */
ol.steps {
  counter-reset: deploy-step;
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1rem;
}

ol.steps > li {
  counter-increment: deploy-step;
  position: relative;
  margin: 0.85rem 0;
  padding: 0.85rem 1rem 0.85rem 3rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafbfd;
}

ol.steps > li::before {
  content: counter(deploy-step);
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol.steps pre {
  margin-top: 0.65rem;
}

pre {
  background: var(--code-bg);
  color: var(--code-text);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  overflow-x: auto;
  margin: 0.75rem 0;
  font-family: Consolas, "Cascadia Code", monospace;
  font-size: 0.86rem;
  line-height: 1.5;
}

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

.muted {
  color: var(--muted);
}

.docs-content a {
  color: var(--accent);
}

.docs-content a:hover {
  text-decoration: underline;
}

.docs-footer-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.docs-footer-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.docs-footer-note a:hover {
  text-decoration: underline;
}
