body.docs-public {
  background:#f7f7f3;
}
.docs-shell {
  padding:56px 0 80px;
}
.docs-shell .docs-kicker {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:#eef5f1;
  border:1px solid rgba(47,107,87,.18);
  color:#245445;
  font-size:.9rem;
  font-weight:600;
}
.docs-shell .docs-kicker::before {
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#245445;
}
.docs-shell .docs-topbar {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 22px;
}
.docs-shell .docs-topbar a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:#fcfcf9;
  border:1px solid rgba(23,23,23,.1);
  color:#4b4b4b;
  font-size:.92rem;
  font-weight:600;
}
.docs-shell .docs-topbar a[aria-current="page"],
.docs-shell .docs-topbar a:hover {
  color:#171717;
  border-color:rgba(47,107,87,.24);
  background:#eef5f1;
}
.docs-shell .docs-card {
  background:#fcfcf9;
  border:1px solid #e1e4da;
  border-radius:20px;
  box-shadow:0 1px 2px rgba(23,23,23,.04), 0 10px 24px rgba(23,23,23,.05);
  padding:28px;
}
.docs-shell .docs-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}
.docs-shell .docs-body {
  margin-top:24px;
}
.docs-shell .docs-body h2,
.docs-shell .docs-body h3,
.docs-shell .docs-body h4 {
  margin-top:34px;
}
.docs-shell .docs-body p,
.docs-shell .docs-body li {
  color:#333;
}
.docs-shell .docs-body ul,
.docs-shell .docs-body ol {
  padding-left:22px;
}
.docs-shell .docs-body code {
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  background:#f2f4ee;
  padding:2px 6px;
  border-radius:8px;
}
.docs-shell .docs-body pre {
  overflow:auto;
  background:#171717;
  color:#f8faf8;
  padding:16px;
  border-radius:16px;
}
.docs-shell .docs-body pre code {
  background:transparent;
  color:inherit;
  padding:0;
}
.docs-shell .docs-body table {
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
}
.docs-shell .docs-body th,
.docs-shell .docs-body td {
  border:1px solid #e1e4da;
  padding:10px 12px;
  text-align:left;
}
.docs-shell .docs-body blockquote {
  margin:18px 0;
  padding:12px 18px;
  border-left:4px solid #2f6b57;
  background:#f2f4ee;
}
.docs-shell .docs-body .admonition,
.docs-shell .docs-body details {
  margin:18px 0;
  padding:14px 16px;
  border:1px solid #d7e0d8;
  border-radius:16px;
  background:#f7faf7;
}
.docs-shell .docs-index-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:24px;
}
.docs-shell .docs-index-grid article {
  background:#fcfcf9;
  border:1px solid #e1e4da;
  border-radius:20px;
  box-shadow:0 1px 2px rgba(23,23,23,.04), 0 10px 24px rgba(23,23,23,.05);
  padding:22px;
}
.docs-shell .docs-index-grid p {
  margin:0 0 16px;
  color:#4b4b4b;
}
@media (max-width: 760px) {
  .docs-shell .docs-index-grid {
    grid-template-columns:1fr;
  }
}
