/* ==========================================================
   Sentences Bundle API Docs — Stylesheet
   ========================================================== */

:root {
  /* Backgrounds */
  --bg: #0b0d10;
  --sidebar-bg: rgba(13, 15, 19, 0.85);
  --panel-bg: #14161c;
  --card-bg: #181a21;
  --card-hover: #1e212b;
  --code-bg: #0d0f14;
  --input-bg: #11141a;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #e8eaf0;
  --text-secondary: #9aa0b2;
  --text-muted: #5e6278;

  /* Accents */
  --primary: #34d399;
  --primary-dark: #10b981;
  --primary-bg: rgba(52, 211, 153, 0.10);
  --accent: #818cf8;
  --accent-bg: rgba(129, 140, 248, 0.10);
  --danger: #f87171;
  --danger-bg: rgba(248, 113, 113, 0.10);
  --warning: #fbbf24;
  --warning-bg: rgba(251, 191, 36, 0.10);

  /* Radii */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.20);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 20px rgba(52, 211, 153, 0.08);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.app {
  display: flex;
  height: 100vh;
  width: 100vw;
}

/* ==========================================================
   Sidebar
   ========================================================== */
.sidebar {
  width: 270px;
  background: var(--sidebar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.2px;
  color: var(--text);
}

/* Search */
.sidebar-search {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.search-icon {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s;
}

.sidebar-search input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px 7px 32px;
  color: var(--text);
  font-size: 12.5px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-sans);
}

.sidebar-search input::placeholder { color: var(--text-muted); }
.sidebar-search input:focus {
  border-color: var(--border-light);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.08);
}
.sidebar-search input:focus + .search-icon,
.sidebar-search:focus-within .search-icon { color: var(--text-secondary); }

.sidebar-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.sidebar-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-footer a:hover { color: var(--text-secondary); }

.sidebar-footer svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Sidebar Groups */
.sidebar-group {
  margin-bottom: 6px;
}

.sidebar-group-title {
  padding: 8px 18px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.sidebar-group-title:hover { color: var(--text-secondary); }

.sidebar-group-title::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
  opacity: 0.6;
}

.sidebar-group.collapsed .sidebar-group-title::after {
  transform: rotate(-45deg);
}

.sidebar-group.collapsed .sidebar-items {
  display: none;
}

.sidebar-item {
  padding: 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 10px;
  border-left: 3px solid transparent;
  margin: 0 8px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  transition: background 0.15s, border-color 0.15s;
}

.sidebar-item:hover {
  background: var(--card-hover);
}

.sidebar-item.active {
  background: var(--card-bg);
  border-left-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--border);
}

.sidebar-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.method-tag {
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  font-family: var(--font-mono);
}

.method-tag.get { background: var(--primary-bg); color: var(--primary); }
.method-tag.post { background: var(--accent-bg); color: var(--accent); }
.method-tag.delete { background: var(--danger-bg); color: var(--danger); }
.method-tag.put { background: var(--warning-bg); color: var(--warning); }

.sidebar-item-name {
  font-size: 12.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}

.sidebar-item.active .sidebar-item-name,
.sidebar-item:hover .sidebar-item-name {
  color: var(--text);
}

/* ==========================================================
   Main Content
   ========================================================== */
.main {
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
  scroll-behavior: smooth;
}

.main-inner {
  max-width: 780px;
  padding: 36px 40px;
}

.api-header-area {
  margin-bottom: 32px;
  animation: fadeInUp 0.4s ease both;
}

.api-breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.api-breadcrumb::after {
  content: '/';
  opacity: 0.4;
}

.api-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.api-path-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.api-path-bar:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.api-path-bar .method-tag.get {
  font-size: 11px;
  padding: 3px 7px;
}

.api-path-bar code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #a5b4fc;
  font-weight: 500;
}

.api-desc {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-top: 16px;
  line-height: 1.75;
}

/* Section */
.section {
  margin-top: 32px;
  animation: fadeInUp 0.4s ease both;
}

.section:nth-child(2) { animation-delay: 0.05s; }
.section:nth-child(3) { animation-delay: 0.10s; }
.section:nth-child(4) { animation-delay: 0.15s; }
.section:nth-child(5) { animation-delay: 0.20s; }

.section-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #f0f1f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* ==========================================================
   Param List
   ========================================================== */
.param-list {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.param-list:hover {
  border-color: var(--border-light);
}

.param-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.02);
}

.param-header .badge {
  background: var(--input-bg);
  border: 1px solid var(--border);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.param-row {
  display: flex;
  align-items: flex-start;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background 0.15s;
}

.param-row:last-child { border-bottom: none; }
.param-row:hover { background: rgba(255,255,255,0.02); }

.param-name {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #93c5fd;
  background: var(--input-bg);
  padding: 3px 10px;
  border-radius: 5px;
  white-space: nowrap;
  border: 1px solid var(--border);
  font-weight: 500;
}

.param-meta {
  flex: 1;
  min-width: 0;
}

.param-type {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 3px;
  font-weight: 500;
  font-family: var(--font-mono);
}

.param-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.param-required {
  font-size: 11px;
  color: var(--danger);
  background: var(--danger-bg);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
  border: 1px solid rgba(248,113,113,0.15);
}

.param-optional {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--input-bg);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* ==========================================================
   Response Card
   ========================================================== */
.response-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.response-card:hover {
  border-color: var(--border-light);
}

.response-header {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: rgba(255,255,255,0.02);
  user-select: none;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.status-text {
  font-size: 13px;
  font-weight: 600;
}

.response-body {
  padding: 16px;
}

.response-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.response-sub::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ==========================================================
   Code Block
   ========================================================== */
pre.code-block {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 16px;
  overflow-x: auto;
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
  position: relative;
}

.code-block-wrapper {
  position: relative;
}

.code-block-wrapper:hover .copy-btn {
  opacity: 1;
  transform: translateY(0);
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-weight: 500;
  z-index: 2;
}

.copy-btn:hover {
  background: var(--border-light);
  color: var(--text);
}

.copy-btn.copied {
  background: var(--primary-bg);
  color: var(--primary);
  border-color: rgba(52,211,153,0.2);
}

code {
  font-family: var(--font-mono);
}

.json-key { color: #93c5fd; }
.json-str { color: #86efac; }
.json-num { color: #fca5a5; }
.json-bool { color: #fcd34d; }

/* ==========================================================
   Example Tabs
   ========================================================== */
.example-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.example-tab {
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.example-tab:hover {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}

.example-tab.active {
  background: var(--accent-bg);
  color: var(--accent);
}

/* ==========================================================
   Debug Panel
   ========================================================== */
.debug-panel {
  width: 440px;
  background: var(--panel-bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
  overflow: hidden;
}

.debug-panel.collapsed {
  width: 0;
  opacity: 0;
  pointer-events: none;
  border-left-width: 0;
}

.debug-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.debug-header-title {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.2px;
}

.debug-close {
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.debug-close:hover {
  background: var(--card-hover);
  color: var(--text);
}

.debug-close svg { width: 16px; height: 16px; }

.debug-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.debug-url-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.debug-url-bar .method-tag.get {
  font-size: 11px;
  padding: 4px 8px;
}

.debug-url {
  flex: 1;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.btn-send {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #0b0d10;
  border: none;
  border-radius: var(--radius-xs);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  font-family: var(--font-sans);
  letter-spacing: 0.2px;
}

.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.30);
}

.btn-send:active {
  transform: translateY(0);
}

.btn-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.debug-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 18px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Debug Input Table */
.debug-input-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.debug-input-table th {
  text-align: left;
  padding: 8px 10px;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-size: 11.5px;
}

.debug-input-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.debug-input-table input,
.debug-input-table select {
  width: 100%;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 6px 10px;
  color: var(--text);
  font-size: 12.5px;
  outline: none;
  font-family: var(--font-mono);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.debug-input-table input:focus,
.debug-input-table select:focus {
  border-color: var(--border-light);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.08);
}

.debug-input-table select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235e6278' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
}

/* Debug Result */
.debug-result {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.debug-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.debug-result-title {
  font-weight: 700;
  font-size: 13.5px;
}

.debug-status {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 5px;
  font-weight: 600;
}

.debug-status.ok {
  background: var(--primary-bg);
  color: var(--primary);
  border: 1px solid rgba(52,211,153,0.15);
}

.debug-status.err {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(248,113,113,0.15);
}

.debug-duration {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--input-bg);
  padding: 3px 10px;
  border-radius: 5px;
  font-weight: 500;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
}

.debug-result-empty {
  color: var(--text-muted);
  font-size: 12.5px;
  text-align: center;
  padding: 40px 0;
  border: 1px dashed var(--border);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.015);
}

/* Debug Toggle Button */
.debug-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #0b0d10;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(52, 211, 153, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 100;
}

.debug-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.45);
}

.debug-toggle svg { width: 18px; height: 18px; }



/* ==========================================================
   Scrollbar
   ========================================================== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2d38; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3a3f4d; }

/* ==========================================================
   Animations
   ========================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================
   Category Grid
   ========================================================== */
.category-grid .param-header {
  border-bottom: 1px solid var(--border);
}

.category-grid-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.category-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--card-bg);
  transition: background 0.15s;
  cursor: default;
}

.category-grid-item:hover {
  background: var(--card-hover);
}

.category-grid-item .param-name {
  font-size: 11px;
  padding: 2px 7px;
}

.category-grid-label {
  font-size: 12.5px;
  color: var(--text-secondary);
}

@media (max-width: 1100px) {
  .category-grid-body {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .category-grid-body {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   Mobile Header
   ========================================================== */
.mobile-header {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--sidebar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.menu-toggle:hover {
  background: var(--card-hover);
  color: var(--text);
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ==========================================================
   Sidebar Overlay
   ========================================================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1200px) {
  .debug-panel { width: 380px; }
}

/* Hide header close button — toggle button in the same spot handles expand/collapse */
.debug-close {
  display: none;
}

@media (max-width: 1020px) {
  .debug-panel {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 400px;
    z-index: 50;
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
  }
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    z-index: 40;
    transform: translateX(-100%);
    width: 260px;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .mobile-header {
    display: flex;
  }
  .main-inner {
    padding: 20px;
  }
  .api-title {
    font-size: 20px;
  }
  .debug-panel {
    width: 100%;
  }
  .api-breadcrumb {
    margin-top: 4px;
  }
}
