:root {
  --bg: #050508;
  --panel: rgba(15, 16, 23, 0.6);
  --panel2: rgba(20, 22, 38, 0.7);
  --text: #f0f0f5;
  --muted: #a0a0b0;
  --line: rgba(255, 255, 255, .08);
  --accent: #ff2d55;
  --accent-cyan: #00d2ff;
  --accent2: #b3002d;
  --good: #34d399;
  --warn: #fbbf24;
  --bad: #f87171;
  --shadow: 0 20px 50px rgba(0, 0, 0, .5);
  --glow: 0 0 30px rgba(255, 45, 85, 0.3);
  --radius: 20px;
  --max: 1200px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

::selection {
  background: rgba(255, 45, 85, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(circle at 15% 50%, rgba(255, 45, 85, 0.08), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(179, 0, 45, 0.1), transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


a {
  color: inherit
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.brand img {
  width: 30px;
  height: 30px
}

.brand .name {
  font-weight: 800;
  letter-spacing: .3px
}

.brand .badge {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}

.navlinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center
}

.navlinks a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.navlinks a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 50%;
  background-color: var(--accent);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
}

.navlinks a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
}

.navlinks a:hover::after {
  width: calc(100% - 28px);
  opacity: 1;
}

.navlinks a.active {
  color: var(--text);
  background: rgba(255, 45, 85, .12);
  border: 1px solid rgba(255, 45, 85, .18)
}

.lang {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  padding: 6px;
  border-radius: 999px;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang button.active {
  color: var(--text);
  background: rgba(255, 45, 85, .18);
  border: 1px solid rgba(255, 45, 85, .24)
}

.hero {
  padding: 52px 0 22px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr
  }
}

.h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -1.2px;
}

@media (max-width: 520px) {
  .h1 {
    font-size: 34px
  }
}

.lead {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.hero-cta-note {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 10px 0 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .5px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 45, 85, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 45, 85, 0.55);
  filter: brightness(1.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
  color: var(--text)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.home-intent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 4px;
}

.home-intent div {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.home-intent b {
  display: block;
  font-size: 14.5px;
  margin-bottom: 5px;
}

.home-intent span {
  color: var(--muted);
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .home-intent {
    grid-template-columns: 1fr;
  }
}

.kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 880px) {
  .kpi {
    grid-template-columns: 1fr
  }
}

.kpi .item {
  background: rgba(0, 0, 0, .12);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 12px;
}

.kpi .item b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px
}

.kpi .item span {
  color: var(--muted);
  font-size: 13px
}

.section {
  padding: 26px 0
}

.section h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.5px;
}

.section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

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

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr
  }
}

.card {
  background: var(--panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
  border-color: rgba(255, 45, 85, 0.4);
}

.card:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px
}

.chip {
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navlinks {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(15, 16, 23, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .navlinks.active {
    display: flex;
  }

  .navlinks a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .lang {
    margin-right: 10px;
  }
}

.chip.ready {
  border-color: rgba(46, 229, 157, .28);
  color: rgba(46, 229, 157, .95);
  background: rgba(46, 229, 157, .07)
}

.chip.partial {
  border-color: rgba(255, 204, 0, .28);
  color: rgba(255, 204, 0, .95);
  background: rgba(255, 204, 0, .06)
}

.chip.planned {
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .70);
  background: rgba(255, 255, 255, .04)
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 22px 0
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 920px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr
  }
}

.figure {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.figure:hover {
  border-color: rgba(255, 45, 85, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.figure img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  padding: 10px;
  background: rgba(0, 0, 0, .14);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.figure:hover img {
  transform: scale(1.05);
}

.figure figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  border-top: 1px solid var(--line);
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 920px) {
  .cols {
    grid-template-columns: 1fr
  }
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6
}

.list li {
  margin: 6px 0
}

.small {
  font-size: 13px;
  color: var(--muted)
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  text-decoration: none
}

.footer a:hover {
  text-decoration: underline
}

.page-title {
  padding: 26px 0 6px
}

.page-title h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
}

.page-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 12px;
}

.row {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.row:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
}

.row .top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.row .top b {
  font-size: 16px;
  font-weight: 600;
}

.row .top .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6
}

.callout {
  border: 1px solid rgba(255, 45, 85, .22);
  background: rgba(255, 45, 85, .07);
  border-radius: 16px;
  padding: 14px;
  margin-top: 14px;
}

.callout b {
  display: block;
  margin-bottom: 6px
}

/* Accordion FAQ Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.faq-item {
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 45, 85, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
  background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

pre.license {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  color: var(--text);
  background: rgba(0, 0, 0, .18);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0 0;
  max-height: 280px;
  overflow: auto;
}

.wiki-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.wiki-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.wiki-section h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.wiki-section p {
  color: var(--text-muter);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.wiki-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.wiki-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.wiki-gallery img:hover {
  transform: scale(1.02);
}

.wiki-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.wiki-card ul {
  padding-left: 1.5rem;
  color: var(--text-muter);
}

.wiki-card li {
  margin-bottom: 0.5rem;
}

.alert {
  padding: 1rem;
  border-left: 4px solid var(--primary);
  background: rgba(126, 188, 111, 0.1);
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}

.alert-danger {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Social Share Component */
.social-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.social-share-title {
  font-weight: 600;
  margin-right: auto;
  color: var(--text);
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  color: white;
  border-color: #1DA1F2;
}

.share-btn.whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.share-btn.copy:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
/* Badge Links */
.badge-link {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    vertical-align: middle;
}
.badge-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.badge-img {
    height: 44px; /* Default height for CTAs */
    width: auto;
    display: block;
}

@media (max-width: 520px) {
    .badge-img {
        height: 40px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT & REFERENCE GUIDE STYLES
   ────────────────────────────────────────────────────────────────────────── */

@media print {
    :root {
        --bg: #ffffff;
        --text: #1a1a1a;
        --panel: #ffffff;
        --panel2: #f8f9fa;
        --line: #dddddd;
        --border: #cccccc;
        --muted: #666666;
    }
    
    body {
        background: white !important;
        color: black !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .header, .footer, .cta-banner, .cta-row, .share-row, .no-print, .calc-btn, .lang {
        display: none !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .card, .calc-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
        background: #fff !important;
    }

    h1, h2, h3 {
        color: #000 !important;
        page-break-after: avoid;
    }

    table {
        width: 100% !important;
        border-collapse: collapse !important;
        color: #1a1a1a !important;
    }

    th, td {
        border: 1px solid #eee !important;
        padding: 6px 10px !important;
    }

    th {
        background: #f0f0f0 !important;
        color: black !important;
    }

    /* Print Watermark Footer */
    body::after {
        content: "Generated by captaincalc.org — Professional Maritime Toolkit";
        position: fixed;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 10px;
        color: #999;
        border-top: 1px solid #eee;
        padding-top: 5px;
    }
}

/* Reference Detail Styles (Screen) */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.ref-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s;
}

.ref-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.9rem;
}

.ref-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--line);
    color: var(--accent-cyan);
    font-weight: 600;
}

.ref-table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
}

.print-trigger {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.print-trigger:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.flag-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid var(--line);
}

.flag-img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.llm-trust {
    margin: 18px 0 28px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: rgba(255,255,255,0.035);
    color: var(--text-secondary);
    line-height: 1.65;
}

.llm-trust strong {
    color: var(--text);
}

.llm-trust a {
    color: var(--accent);
    font-weight: 700;
}

.llm-trust .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 8px;
    font-size: 0.92rem;
}

.entity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.entity-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255,255,255,0.03);
}

.llm-sources {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}
