
html { scroll-behavior: smooth; }
/* Table of Contents Styling */
.toc-container {
  background:rgb(17, 247, 182);
  border: 1px solidrgb(59, 251, 29);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 32px;
  font-family: 'Poppins', Arial, sans-serif;
}
.toc-container ul {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 24px;
}
.toc-container ul li {
  margin-bottom: 6px;
}
.toc-container a {
  color:rgb(20, 82, 11);
  text-decoration: underline;
  font-size: 1.03rem;
  transition: color 0.2s;
}
.toc-container a:hover {
  color:rgb(249, 8, 8);
  text-decoration: underline;
}
.toc-container strong {
  font-size: 1.16rem;
}
/* Anchor Offset for Fixed Header (adjust 80px to your header height) */
h2[id], h3[id] {
  scroll-margin-top: 80px;
}
/* Responsive for smaller screens */
@media (max-width: 600px) {
  .toc-container { padding: 12px; }
  h2[id], h3[id] { scroll-margin-top: 60px; }
}
