/* TOC Wrapper */
.toc-wrapper {
  background: #f9fbff;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  padding: 15px 20px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: "Segoe UI", Roboto, sans-serif;
  max-width: 800px;
}

/* Title */
.toc-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  
  padding: 8px 12px;
  border-radius: 4px;
  margin: 0 0 12px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}


/* List style */
.toc-headings {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-headings li {
  margin: 4px 0; /* बहुत ज्यादा gap नहीं */
  font-size: 14px;
  line-height: 1.4;
}

/* Links */
.toc-headings a {
  color: #2d3748;
  text-decoration: none;
  transition: all 0.2s ease;
}

.toc-headings a:hover {
  color: #3182ce;
  padding-left: 4px;
}

/* Indentation by level */
.level-1 { margin-left: 0; font-weight: 600; }
.level-2 { margin-left: 15px; }
.level-3 { margin-left: 25px; font-size: 13.5px; }
.level-4 { margin-left: 35px; font-size: 13px; }
.level-5 { margin-left: 45px; font-size: 12.5px; }
.level-6 { margin-left: 55px; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
  .toc-wrapper {
    padding: 12px;
  }
  .toc-title {
    font-size: 15px;
    text-align: center;
  }
}
