:root {
    --bg-color: #161a25;
    --card-bg: #1e2536;
    --text-color: #e6e6e6;
    --accent-color: #007bff;
    --border-color: #333;
    --transition: 0.3s ease;
    --font: 'Poppins', sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font);
  }
  
  /* 🔹 Container Layout */
  .docs-container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    gap: 2rem;
  }
  
  /* 🔹 Sidebar */
  .docs-sidebar {
    flex: 0 0 250px;
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 1rem;
  }
  
  .docs-sidebar h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
  }
  
  .docs-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .docs-sidebar li {
    margin-bottom: 0.5rem;
  }
  
  .docs-sidebar a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background-color var(--transition);
  }
  
  .docs-sidebar a:hover {
    background-color: var(--hover-bg, #2c3448);
  }
  
  .docs-sidebar a.active {
    background-color: var(--hover-bg);
    font-weight: bold;
  }
  
  .docs-sidebar a img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    filter: brightness(1.2);
  }
  
  /* 🔹 Main Content */
  .docs-content {
    flex: 1;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
  }
  
  .docs-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .docs-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--accent-color);
  }
  
  .docs-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  .docs-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .docs-content li {
    margin-bottom: 0.5rem;
  }
  
  .docs-content a {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .docs-content a:hover {
    text-decoration: none;
  }
  
  /* 🔹 Badge Blocks */
  .badge-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
    background-color: #2a2f3d;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
  }
  
  .badge-block img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #1a1f2c;
    padding: 6px;
  }
  
  .badge-block-content {
    flex: 1;
  }
  
  .badge-block-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #fff;
  }
  
  .badge-block-content ul {
    margin: 0.3rem 0 0 1rem;
    padding-left: 0.8rem;
    list-style-type: disc;
  }
  
  .badge-note {
    margin-top: 2rem;
    font-style: italic;
    color: #bbb;
    font-size: 0.9rem;
    background: #222836;
    border-left: 3px solid var(--accent-color);
    padding: 0.8rem 1rem;
    border-radius: 6px;
  }
  
  /* 🔹 Responsiveness */
  @media (max-width: 900px) {
    .docs-container {
      flex-direction: column;
    }
  
    .docs-sidebar {
      width: 100%;
      position: static;
    }
  
    .badge-block {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .badge-block img {
      margin-bottom: 0.5rem;
    }
  
    .badge-block-content {
      text-align: left;
    }
  }
  
  .docs-sidebar .section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #aaa;
    font-weight: bold;
    margin: 1rem 0 0.5rem 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid #444;
  }
  /* ✅ Badge icons netjes inline maken */
.inline-badge {
    width: 72px;
    height: 72px;
    vertical-align: middle;
    margin-right: 2px;
    object-fit: contain;
  }
  /* Attribution lists */
.docs-content .attribution-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.docs-content .attribution-list li {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
}

.docs-content .attribution-icon {
  width: 128px;
  height: 128;
  margin-right: 0.75rem;
  object-fit: contain;
}
