@font-face {
  font-family: "helveticaRedox";
  src:
    url("helveticaNeue/helvetica-neue-ultra-light.woff2") format("woff2"),
    url("helveticaNeue/helvetica-neue-ultra-light.woff") format("woff"),
    url("helveticaNeue/helvetica-neue-ultra-light.ttf") format("truetype"),
    url("../fassets/fonts/helveticaNeue/helvetica-neue-ultra-light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "helveticaRedox";
  src:
    url("helveticaNeue/helvetica-neue-thin.woff2") format("woff2"),
    url("helveticaNeue/helvetica-neue-thin.woff") format("woff"),
    url("helveticaNeue/helvetica-neue-thin.ttf") format("truetype"),
    url("helveticaNeue/helvetica-neue-thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "helveticaRedox";
  src:
    url("helveticaNeue/helvetica-neue-light.woff2") format("woff2"),
    url("helveticaNeue/helvetica-neue-light.woff") format("woff"),
    url("helveticaNeue/helvetica-neue-light.ttf") format("truetype"),
    url("helveticaNeue/helvetica-neue-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "helveticaRedox";
  src:
    url("helveticaNeue/helvetica-neue.woff2") format("woff2"),
    url("helveticaNeue/helvetica-neue.woff") format("woff"),
    url("helveticaNeue/helvetica-neue.ttf") format("truetype"),
    url("helveticaNeue/helvetica-neue.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "helveticaRedox";
  src:
    url("helveticaNeue/helvetica-neue-medium.woff2") format("woff2"),
    url("helveticaNeue/helvetica-neue-medium.woff") format("woff"),
    url("helveticaNeue/helvetica-neue-medium.ttf") format("truetype"),
    url("helveticaNeue/helvetica-neue-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "helveticaRedox";
  src:
    url("helveticaNeue/helvetica-neue-bold.woff2") format("woff2"),
    url("helveticaNeue/helvetica-neue-bold.woff") format("woff"),
    url("helveticaNeue/helvetica-neue-bold.ttf") format("truetype"),
    url("helveticaNeue/helvetica-neue-bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

:root {
  --color-text: #4f5f6c;
  --color-text-dark: #1f2937;
  --color-bg-soft: #f6f6f6;
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;
  --color-muted: #64748b;
  --color-card-dark: #2c3139;
  --color-code-dark: #0f172a;
  --color-active: #2d9aea;
  --color-schema-border: #dbe4ee;
  --color-success: #22c55e;
  --color-danger: #c82333;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: helveticaRedox, sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  font-size:13px;
}

img,
pre,
code,
table {
  max-width: 100%;
}

h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
}

h3 {
  margin: 20px 0 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
}

p {
  font-size: 13px;
}

.layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 100vh;
  height: 100vh;  
}

/* ===== SIDEBAR ===== */

.sidebar {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  padding: 20px 10px 5px 25px;
  background: #fff;
}

.content {
  overflow: auto;
  padding: 0;
}

#title {
  font-size: 15px;
  font-weight: 500;
}

.sidebar h1 {
  margin: 0;
  font-size: 20px;
}

.top_sidebar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.top_sidebar h1 {
  flex: 1;
  min-width: 0;
}

.lang-switch {
  margin-left: auto;
  margin-right: 15px;
}

.lang-switch select {
  background-color: #fff;
  border: none;  
}

.search input,
.api_test input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.search input {
  width: 95%;
  margin-bottom: 20px;
  background: #fff;
}

/* ===== MENU ===== */

#menu {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding-right: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 0px;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
}

.menu-item:hover,
.menu-subitem:hover {
  color: #0f172a;
}

.menu-item.is-active,
.menu-subitem.is-active {
  color: var(--color-active);
  font-weight: 400;
}

.menu-item.is-active .menu-summary,
.menu-subitem.is-active .menu-summary {
  color: var(--color-active);
}

.menu-item,
.menu-subitem {
  line-height:19px;
  transition: color 0.25s ease;
  font-size:14px;
}

.menu-category-title {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size:14px;
  text-decoration:underline;
}

.menu-subitems {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 8px;
}

.menu-subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--color-muted);
  cursor: pointer;
}

.menu-summary {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-subitem .method {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1px 4px;
  border-radius: 3px;
  background: transparent;
}

.menu-path {
  font-family: monospace;
}

/* ===== LAYOUT CONTENT ===== */

.endpoint {
  margin-bottom: 15px;
  padding: 20px;
  background-color: var(--color-bg-soft);
  border-radius: 2px;
  scroll-margin-top: 30px;
}

.endpoint-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  align-items: start;
}

.panel {
  min-width: 0;
  padding: 0;
  overflow: visible;
  background-color: var(--color-bg-soft);
  border-radius: 6px;
}

.panel.left {
  position: sticky;
  top: 20px;
  align-self: start;
  height: fit-content;
}

.panel.right {
  align-self: start;
  margin-top: 60px;
  padding-bottom: 0;
}

.endpoint-summary {
  padding: 3px 10px;
  font-weight: 400;
  color: #888;
}

.endpoint-summary-param {
  padding: 0 0 6px 2px;
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.schema-title-spacing {
  margin-top: 18px;
}

.endpoint-description {
  padding: 0 0 15px 2px;
  font-size: 18px;
  line-height:26px;
  font-weight: 400;
  color: var(--color-text);
}

/* ===== API TEST ===== */

.api_test {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 330px;
  z-index: 20;
  align-items: center;
  gap: 10px;
  padding: 15px 25px 15px 20px;
  background: #eee;
}

.url_endpoint,
.auth {
  flex: 1;
}

/* ===== CARD ===== */

.card {
  padding: 10px 15px 15px;
  color: #ccc;
  background: var(--color-card-dark);
  border-radius: 5px;
}

.card_response {
  margin-top: 5px;
}

.card_schema_response {
  margin-top: 15px;
  padding:0px;
  color: var(--color-text);
  /*border: 1px solid var(--color-border);*/
  background: transparent;
}

.card_schema_response .card_title {
  font-size: 14px;
  margin-bottom:5px;
  font-weight: 400;
  color: var(--color-text);
}

.card_title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 5px 7px 0px;
  font-size: 15px;
}

.card_title .path {
  margin-left: -5px;
  font-size: 13px;
  color: #ddd;
}

.card_title select {
  width: 110px;
  margin-left: auto;
  padding: 4px 7px;
  color: #fff;
  background-color: var(--color-card-dark);
  border: 1px solid #565656;
  border-radius: 5px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btntry {
  padding: 5px 12px;
  color: #eee;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 3px;
}

.btntry:hover {
  cursor: pointer;
  background-color: #222;
}

.copy-btn {
  margin-left: 10px;
  font-size: 18px;
  color: #9ca3af;
  background: transparent;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.copy-btn:hover {
  color: #fff;
}

.copy-btn.is-copied {
  color: var(--color-success);
  animation: copyPop 0.55s ease;
}

@keyframes copyPop {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== METHOD / PATH ===== */

.method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
}
.get {
  color: #16a34a;
}

.post {
  color: #2563eb;
}

.put, .patch {
  color: #f59e0b;
}

.delete {
  color: #dc2626;
}

.path {
  font-family: monospace;
  font-weight: 400;
  color: var(--color-text);
}

/* ===== CODE ===== */

pre:not(.schema-block) {
  margin: 0;
  padding: 0;
  overflow: auto;
  color: #e2e8f0;
  background: var(--color-card-dark);
  border-radius: 8px;
  font-size: 12px!important;
}

code:not(.schema-block) {
  padding: 0 !important;
  background: var(--color-card-dark) !important;
}

.code-editor {
  display: grid;
  grid-template-columns: 40px 1fr;
  overflow: hidden;
  background: var(--color-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.code-lines {
  padding: 14px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.4;
  text-align: right;
  color: #555;
  background: var(--color-card-dark);
  user-select: none;
}

.code-lines span {
  display: block;
}

.code-pre code {
  display: block;
  padding: 13px !important;
  line-height: 1.51;
  background: transparent !important;
}

/* ===== RESPONSE PREVIEW ===== */

.response-wrap {
  margin-top: 4px;
}

.response-block {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 320ms ease,
    opacity 80ms ease;
}

.response-block .response-inner {
  min-height: 0;
  overflow: hidden;
}

.response-block.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.expand-btn {
  display: inline-block !important;
  margin-top: 10px;
  padding: 0;
  font-size:14px;
  padding-left:2px;
  color: #60a5fa;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.expand-btn:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ===== STATES ===== */

.live-response-box {
  margin-top: 12px;
  overflow: hidden;
  background: var(--color-code-dark);
  border: 1px solid #2a2f3a;
  border-radius: 6px;
}

.live-response-header {
  padding: 10px 14px;
  font-weight: 600;
  color: #e5e7eb;
  background: #111827;
  border-bottom: 1px solid #2a2f3a;
}

.status-code {
  font-size: 14px;
}

.loading-state,
.error-state,
.empty-state {
  padding: 14px;
}

.error-state {
  color: #fca5a5;
}

.empty-state {
  padding: 10px 0;
  color: #94a3b8;
}

/* ===== PARAMS ===== */

.params-accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.param-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.param-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 9px 16px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.param-toggle:hover,
.param-item.is-open .param-toggle {
  background: rgba(45, 154, 234, 0.06);
}

.param-toggle-left {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
}

.param-toggle-right {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.param-name {
  display: block;
  min-width: 0;
  overflow: hidden;  
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  color:var(--color-text);
}

.param-type {
  padding: 2px 6px;
  font-family: monospace;
  font-size: 12px;
  color: #334155;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.param-location {
  padding: 2px 6px;
  font-size: 12px;
  color: #0056b3;
  background: rgba(0, 123, 255, 0.14);
  border-radius: 6px;
}

.param-required-slot {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 62px;
}

.param-required {
  padding: 2px 6px;
  font-size: 12px;
  color: var(--color-danger);
  background: rgba(240, 73, 89, 0.18);
  border-radius: 6px;
}

.param-chevron,
.schema-chevron {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 18px;
  color: #64748b;
  transition: transform 0.25s ease;
}

.param-item.is-open .param-chevron,
.schema-node.is-open .schema-chevron {
  transform: rotate(90deg);
}

.param-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.25s ease;
}

.param-item.is-open .param-body {
  max-height: 500px;
  opacity: 1;
  padding: 0 16px 16px;
}

.param-description {
  margin-top: 12px;  
  line-height: 1.5;
  color: var(--color-text);
}

.param-extra {
  margin-top: 12px;
}

.param-label {
  margin-bottom: 6px;
  font-weight: 400;
  color: var(--color-text);
}

.param-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.param-tag {
  padding: 4px 8px;
  font-family: monospace;
  font-size: 12px;
  background: #f1f5f9;
  border-radius: 999px;
}

.param-example {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 12px;
  color: var(--color-text);
  background: #f1f5f9;
  border-radius: 6px;
  white-space: pre-wrap;
}

/* ===== SCHEMA BLOCK STATIC ===== */

.schema-block {
  padding: 10px 10px;
  overflow: auto;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-top: 7px;;
}

.schema-block code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #1f2937 !important;
  background: transparent !important;
}

/* ===== RESPONSE FIELDS / SCHEMA ===== */

.schema-card {
  padding: 0;
  border-radius: 6px;
}

.schema-tree {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schema-node {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-schema-border);
  border-radius: 6px;
  margin-top:-4px;
}
.schema-node-leaf{
  border:none;
  border-radius:0px;
  border-bottom: 1px solid #eee;
}
.schema-node-leaf:last-child{
  border:none;
}
.schema-node-toggle {
  width: 100%;
  padding: 9px 15px;
  text-align: left;
  background: #fff;
  border: 0;
  cursor: pointer;
}
.is-static{
  padding: 8px 0px;
}
.schema-node-toggle.is-static {
  cursor: default;
  padding: 10px 5px;
}

.schema-node-toggle:hover:not(.is-static),
.schema-node.is-open > .schema-node-toggle {
  background: rgba(45, 154, 234, 0.06);
}

.schema-row-head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: nowrap;
}

.schema-name {
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  word-break: break-word;
}

.schema-type {
  padding: 2px 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--color-text);
  background: #eef2f7;
  border-radius: 999px;
}

.schema-node-meta {
  padding: 0px;
}

.schema-description {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text);
}

.schema-node-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.schema-node-inner {
  padding: 20px 20px 10px 20px;
}

.schema-leaf {
  padding: 8px 0;
}

/* ===== TABLET ===== */

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 260px 1fr;
  }

  .endpoint-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .panel.left {
    position: static;
    top: auto;
    height: auto;
  }

  .panel.right {
    margin-top: 0;
  }

  .api_test {
    left: 260px;
    padding: 12px 16px;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .layout {
    display: block;
    min-height: 100vh;
    height: auto;
  }

  .sidebar {
    overflow: visible;
    padding: 14px 14px 8px;
    border-right: none;
    display: block;
    height: auto;
  }

  .content {
    overflow: visible;
    padding: 0;
  }

  .top_sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .top_sidebar h1 {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .lang-switch {
    margin-right: 0;
    margin-left: auto;
    flex-shrink: 0;
  }

  .lang-switch select {
    min-width: 110px;
    max-width: 130px;
  }

  .search input {
    width: 100%;
    margin-bottom: 14px;
  }

  #menu {
    margin-bottom: 6px;
    overflow: visible;
    padding-right: 0;
  }

  .menu-item,
  .menu-subitem,
  .menu-category-title {
    font-size: 13px;
  }

  .endpoint {
    margin-bottom: 10px;
    padding: 16px 14px 10px;
    border-radius: 0;
  }

  .endpoint-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .panel {
    padding: 0;
  }

  .panel.left {
    position: static;
    top: auto;
    height: auto;
  }

  .panel.right {
    margin-top: 0;
  }

  .method,
  .path {
    display: block;
  }

  .method {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .path {
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
  }

  h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  p {
    font-size: 13px;
    line-height: 1.6;
  }

  .card {
    padding: 10px 10px 12px;
    border-radius: 6px;
  }

  .card_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
    column-gap: 8px;
    padding: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-left: 0;
  }

  .card_title select {
    width: 100%;
    min-height: 38px;
    margin-left: 0;
  }

  .copy-btn {
    margin-left: 0;
    font-size: 17px;
  }

  .params-accordion {
    width: 100%;
  }

  .param-item {
    overflow: hidden;
  }

  .param-toggle {
    width: 100%;
  }

  .param-toggle-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .param-name,
  .param-description,
  .param-example,
  .schema-name,
  .schema-description {
    word-break: break-word;
  }

  .param-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .schema-block {
    padding: 12px;
    overflow-x: auto;
    font-size: 12px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
  }

  pre:not(.schema-block) {
    overflow-x: auto;
  }

  .code-editor {
    display: grid;
    grid-template-columns: 34px 1fr;
    width: 100%;
    overflow: hidden;
  }

  .code-lines {
    padding: 12px 6px;
    font-size: 11px;
    line-height: 1.6;
  }

  .code-pre {
    overflow-x: auto;
  }

  .code-pre code {
    min-width: 0;
    padding: 12px !important;
    font-size: 12px;
    line-height: 1.6;
  }

  .response-wrap {
    width: 100%;
  }

  .expand-btn {
    font-size: 12px;
  }

  .api_test {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 14px;
    background: #eee;
  }

  .url_endpoint,
  .auth {
    width: 100%;
  }

  .api_test input {
    width: 100%;
    min-height: 40px;
  }

  .schema-node-inner {
    padding: 10px 10px 10px 16px;
  }
}

.schema-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.schema-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.schema-table th,
.schema-table td {
  text-align: left;
  padding: 7px 15px 7px 0px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.schema-table tr:last-child td{
  border:none;
}
.schema-table th {  
  font-weight: 600;
  font-size:12px;
}

.schema-field {
  /*font-family: monospace;*/
  font-weight: 500;  
}

.schema-table-row-expandable td {
  background: #fff;
}

.schema-inline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.schema-inline-name {
  font-family: monospace;
  font-weight: 600;
}

.schema-table-subcell {
  padding: 0 !important;
  border-bottom: 0 !important;
}

.schema-inline-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 12px;
}

.schema-inline-body.is-open {
  padding: 12px;
}

.enum-table-wrap {
  margin-top: 8px;
}

.enum-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 420px;
  font-size: 13px;
}

.enum-table th,
.enum-table td {
  border: 1px solid #e5e7eb;
  padding: 6px 8px;
  text-align: left;
  vertical-align: top;
}

.enum-table th {
  background: #f8fafc;
  font-weight: 600;
}

.enum-code {
  font-family: monospace;
  font-weight: 600;
  white-space: nowrap;
}

.schema-description {
  margin-bottom: 6px;
}
/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {
  .sidebar {
    padding: 12px 12px 6px;
  }

  .endpoint {
    padding: 14px 12px 8px;
  }

  .top_sidebar h1 {
    font-size: 16px;
  }

  .lang-switch select {
    min-width: 96px;
    font-size: 13px;
  }

  .method {
    font-size: 14px;
  }

  .path {
    font-size: 13px;
  }

  .card_title {
    font-size: 12px;
  }

  .code-editor {
    grid-template-columns: 30px 1fr;
  }

  .code-lines {
    padding: 10px 4px;
    font-size: 10px;
  }

  .code-pre code {
    padding: 10px !important;
    font-size: 11px;
  }

  .schema-block {
    font-size: 11px;
  }

  .schema-node-toggle {
    padding: 9px 10px;
  }
}
