/* ============================================================
   Decoding Social Intent from Neural Oscillations — Site Styles
   Distill.pub-inspired single-page scrolling layout
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --text: #1a1a2e;
  --text-light: #555;
  --text-muted: #888;
  --bg: #fff;
  --bg-alt: #f8f9fa;
  --accent: #3498db;
  --cluster0: #3498db;
  --cluster1: #e74c3c;
  --social-red: rgba(231, 76, 60, 0.12);
  --hero-bg: #0f0f23;
  --hero-accent: #6c63ff;
  --border: #e0e0e0;
  --max-text: 720px;
  --max-figure: 1000px;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Source Serif 4', 'Georgia', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
  color: var(--text);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4em;
  color: var(--text);
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  border-bottom-color: var(--accent);
}

strong { font-weight: 700; }

/* --- Layout --- */
.container {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

/* --- Hero --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  color: #fff;
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

/* --- Hero Video Grid (4×3 background) --- */
.hero-video-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  /* behavior is ~1.68:1 aspect, spatial clips are 1:1 */
  grid-template-columns: 1.68fr 1fr 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  z-index: 0;
}

.hero-video-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Hero Dark Overlay --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 35, 0.68);
  z-index: 1;
}

/* --- Hero Text Content --- */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.hero .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero .authors {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.hero .authors span {
  margin: 0 0.3em;
}

.hero .institution {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.6em;
}

.hero .github-link {
  display: inline-block;
  margin-top: 1.5em;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0.4em 1em;
  transition: color 0.2s, border-color 0.2s;
}

.hero .github-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Labels --- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5em;
}

/* --- Abstract --- */
.abstract {
  background: var(--bg-alt);
}

.abstract-text {
  font-size: 1.05rem;
  color: var(--text-light);
  border-left: 3px solid var(--accent);
  padding-left: 1.2em;
  font-style: italic;
}

/* --- Figures --- */
.figure {
  margin: 2.5rem auto;
  text-align: center;
}

.figure-wide {
  max-width: var(--max-text);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.figure img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.figure-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8em;
  line-height: 1.55;
  max-width: var(--max-text);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.figure-caption strong {
  color: var(--text-light);
}

/* Figure placeholder (before images are added) */
.figure-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

/* --- Key Finding Callouts --- */
.finding {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.06), rgba(231, 76, 60, 0.04));
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1.2em 1.5em;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.finding strong {
  color: var(--accent);
}

/* --- Stat Highlight --- */
.stat-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.2em 1em;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3em;
  display: block;
}

/* --- Cluster Color Tags --- */
.cluster-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15em 0.5em;
  border-radius: 3px;
  vertical-align: middle;
}

.cluster-tag.c0 {
  background: rgba(52, 152, 219, 0.15);
  color: var(--cluster0);
}

.cluster-tag.c1 {
  background: rgba(231, 76, 60, 0.15);
  color: var(--cluster1);
}

/* --- Questions List --- */
.questions-list {
  list-style: none;
  padding: 0;
  counter-reset: q;
}

.questions-list li {
  counter-increment: q;
  padding: 1em 1.2em 1em 3.2em;
  margin-bottom: 0.8em;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  line-height: 1.6;
}

.questions-list li::before {
  content: counter(q);
  position: absolute;
  left: 1em;
  top: 1em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

/* --- Conclusion --- */
.conclusion {
  background: var(--hero-bg) !important;
  color: #fff;
  padding: 5rem 0;
}

.conclusion h2 {
  color: #fff;
}

.conclusion p {
  color: rgba(255, 255, 255, 0.8);
}

.conclusion .finding {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.3);
}

.conclusion .finding strong {
  color: rgba(255, 255, 255, 0.95);
}

.conclusion a {
  color: rgba(108, 99, 255, 0.9);
}

/* --- References --- */
.references {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.references li {
  margin-bottom: 0.5em;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--hero-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer a {
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  html { font-size: 16px; }

  section { padding: 3rem 0; }

  .hero { min-height: 80vh; background: var(--hero-bg); }

  .hero-video-grid { display: none; }

  .figure-wide { padding: 0 1rem; }

  .stat-row { flex-direction: column; gap: 0.8rem; }

  .stat { min-width: 0; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  .container { padding: 0 1rem; }

  h2 { font-size: 1.5rem; }
}

/* --- Floating Mini-Player --- */
.mini-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  min-width: 200px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.mini-player.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.mini-player.dragging {
  transition: none;
  user-select: none;
}

.mini-player.fullscreen {
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0;
  z-index: 10001;
}

.mini-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: #161b22;
  cursor: grab;
  user-select: none;
}

.mini-player.dragging .mini-player-header {
  cursor: grabbing;
}

.mini-player-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-player-controls {
  display: flex;
  gap: 4px;
}

.mini-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}

.mini-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.mini-player video {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: contain;
  background: #000;
}

.mini-player.fullscreen video {
  width: 100%;
  height: calc(100% - 34px);
  object-fit: contain;
  background: #000;
}

/* --- Resize handles: edges (6px) and corners (12px) --- */
.resize-handle { position: absolute; z-index: 10; }

.resize-n  { top: -3px; left: 12px; right: 12px; height: 6px; cursor: ns-resize; }
.resize-s  { bottom: -3px; left: 12px; right: 12px; height: 6px; cursor: ns-resize; }
.resize-e  { right: -3px; top: 12px; bottom: 12px; width: 6px; cursor: ew-resize; }
.resize-w  { left: -3px; top: 12px; bottom: 12px; width: 6px; cursor: ew-resize; }
.resize-ne { top: -3px; right: -3px; width: 12px; height: 12px; cursor: nesw-resize; }
.resize-nw { top: -3px; left: -3px; width: 12px; height: 12px; cursor: nwse-resize; }
.resize-se { bottom: -3px; right: -3px; width: 12px; height: 12px; cursor: nwse-resize; }
.resize-sw { bottom: -3px; left: -3px; width: 12px; height: 12px; cursor: nesw-resize; }

.mini-player.fullscreen .resize-handle { display: none; }

/* --- Reopen pill button --- */
.mini-reopen-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #161b22;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.15s, border-color 0.15s;
}

.mini-reopen-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.mini-reopen-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

@media (max-width: 480px) {
  .mini-player {
    width: 260px;
    bottom: 10px;
    right: 10px;
  }
  .mini-reopen-btn {
    bottom: 10px;
    right: 10px;
  }
}

/* ============================================================
   Site Navigation Bar
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(15, 15, 35, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 48px;
}

.nav-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.nav-tabs {
  display: flex;
  gap: 0;
}

.nav-tab {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.85em 1.2em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.nav-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.nav-tab.active {
  color: #fff;
  border-bottom-color: var(--accent);
}

/* ============================================================
   Appendix Page Styles
   ============================================================ */
.appendix-body {
  padding-top: 48px;
}

.appendix-header {
  background: var(--hero-bg);
  color: #fff;
  padding: 5rem 0 3rem;
  text-align: center;
}

.appendix-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #fff;
}

/* --- Section Boxes (clickable cards) --- */
.section-boxes {
  background: var(--bg-alt);
  padding: 3rem 0;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.section-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.section-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
  border-bottom-color: var(--accent);
}

.box-number {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4em;
  display: block;
}

.box-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3em;
  display: block;
}

.box-range {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: block;
}

/* --- Group Headings --- */
.group-heading {
  background: var(--hero-bg);
  color: #fff;
  padding: 3rem 0 2rem;
  text-align: center;
  scroll-margin-top: 60px;
}

.group-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4em;
}

.group-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

/* --- Floating Table of Contents --- */
.floating-toc {
  position: fixed;
  top: 60px;
  left: 16px;
  width: 200px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  z-index: 9990;
  opacity: 0;
  transform: translateX(-12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8em 0.6em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.floating-toc.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.floating-toc .toc-group {
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid var(--border);
}

.floating-toc .toc-group:last-child {
  border-bottom: none;
}

.floating-toc a {
  display: block;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border-bottom: none;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  line-height: 1.4;
}

.floating-toc a:hover {
  border-bottom: none;
}

.floating-toc .toc-big {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.35em 0.5em;
  margin-bottom: 0.15em;
  letter-spacing: 0.02em;
}

.floating-toc .toc-big:hover {
  color: var(--accent);
  background: rgba(52, 152, 219, 0.06);
}

.floating-toc .toc-big.active {
  color: var(--accent);
}

.floating-toc .toc-sub {
  font-size: 0.66rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0.2em 0.5em 0.2em 1.1em;
}

.floating-toc .toc-sub:hover {
  color: var(--accent);
  background: rgba(52, 152, 219, 0.04);
}

.floating-toc .toc-sub.active {
  color: var(--accent);
  font-weight: 600;
}

/* Scrollbar styling for the floating TOC */
.floating-toc::-webkit-scrollbar {
  width: 3px;
}

.floating-toc::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* Method Note Callout */
.method-note {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.06), rgba(52, 152, 219, 0.02));
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1em 1.3em;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.method-note strong {
  color: var(--accent);
}

.method-note ul {
  margin: 0.5em 0 0 1.2em;
  line-height: 1.8;
}

/* Parameter Justification Box */
.param-box {
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.06), rgba(243, 156, 18, 0.02));
  border-left: 4px solid #e67e22;
  border-radius: 0 6px 6px 0;
  padding: 1em 1.3em;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.param-box strong {
  color: #d35400;
}

.param-box ul {
  margin: 0.5em 0 0 1.2em;
  line-height: 1.8;
}

/* Math Block */
.math-block {
  margin: 1.2em 0;
  text-align: center;
  overflow-x: auto;
  padding: 0.5em 0;
}

/* Method Tables */
.method-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

.method-table th {
  background: var(--bg-alt);
  font-weight: 600;
  text-align: left;
  padding: 0.75em 1em;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.method-table td {
  padding: 0.65em 1em;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  vertical-align: top;
}

.method-table tr:last-child td {
  border-bottom: none;
}

/* Appendix Inline SVG Figures */
.appendix-figure {
  margin: 1.8rem 0;
  text-align: center;
}

.appendix-figure svg {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fafbfc;
}

.appendix-figure-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.6em;
  line-height: 1.5;
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #2980b9;
  border-bottom-color: transparent;
}

/* Appendix section headings with proper scroll offset */
.appendix-body section[id] {
  scroll-margin-top: 60px;
}

/* Appendix ordered lists inside content */
.appendix-body section ol:not(.toc-list):not(.references),
.appendix-body section ul {
  padding-left: 1.4em;
  margin-bottom: 1em;
  line-height: 1.8;
}

.appendix-body section ol ol {
  list-style-type: lower-alpha;
}

/* Responsive appendix */
@media (max-width: 1100px) {
  .floating-toc {
    display: none;
  }
}

@media (max-width: 768px) {
  .appendix-header {
    padding: 4rem 0 2rem;
  }

  .box-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .section-box {
    padding: 1.4rem 1rem;
  }

  .method-table {
    font-size: 0.78rem;
  }

  .method-table th,
  .method-table td {
    padding: 0.5em 0.6em;
  }
}

@media (max-width: 480px) {
  .nav-title {
    display: none;
  }

  .nav-tabs {
    width: 100%;
    justify-content: center;
  }
}
