/* Orbes TOC styles: blanco + bordes azul eléctrico + detalles menta */
.orbes-toc{
  background:#fff;
  border:2px solid #0066ff; /* azul eléctrico */
  border-radius:16px;
  padding:14px 16px;
  margin:18px 0;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.orbes-toc__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}
.orbes-toc__title{
  font-size:1.05rem;
  color:#111;
}
.orbes-toc__toggle{
  border:1px solid #2bd9b3; /* menta */
  background:linear-gradient(180deg,#f8fffe,#e9fff9);
  border-radius:999px;
  padding:6px 10px;
  cursor:pointer;
  font-size:0.85rem;
}
.orbes-toc__body{}
.orbes-toc__list{
  list-style:none;
  margin:0;
  padding-left:0;
}
.orbes-toc__item{
  margin:6px 0;
}
.orbes-toc__item--h3{ margin-left:12px; }
.orbes-toc__item--h4{ margin-left:24px; }
.orbes-toc__link{
  text-decoration:none;
  border-bottom:1px dotted #2bd9b3;
}
.orbes-toc__link:hover{
  text-decoration:underline;
}
