/* Include this file after the main stylesheet via <link rel="stylesheet" href="sidebar.css"> */
.toc-sidebar-right {
  position: sticky;
  top: 110px;
  width: 100%;
  max-height: calc(100vh - 140px);
  min-height: 320px;
  display: flex;
  flex-direction: column;

  /* Apple glass look */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 20px;

  /* delikatna ramka + cień */
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);

  padding: 24px;
  font-family: inherit;
}

.toc-title {
  margin-bottom: 16px;
}

.toc-scroll-area {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 16px;
}

.toc-sidebar-right .toc-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.toc-sidebar-right .toc-scroll-area {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 4px;
}

.toc-sidebar-right .toc-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.toc-sidebar-right .toc-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.toc-sidebar-right .toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.toc-sidebar-right .toc-nav {
  position: relative;
  padding-left: 16px;
}

.toc-sidebar-right .toc-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.toc-sidebar-right .toc-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-sidebar-right .toc-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333333;
  text-decoration: none;
  padding-left: 12px;
  padding-right: 8px;
  position: relative;
  transition: color 0.2s ease;
}

.toc-sidebar-right .toc-link:hover {
  color: #6366f1;
}

.toc-sidebar-right .toc-link::before {
  content: "";
  position: absolute;
  left: -6px;
  width: 4px;
  height: 100%;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.toc-sidebar-right .toc-link-active {
  font-weight: 600;
  color: #6366f1;
}

.toc-sidebar-right .toc-link-active::before {
  background: #6366f1;
}




.toc-sidebar-right .toc-cta-accent {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(37, 99, 235, 0.35));
}

.toc-sidebar-right .toc-cta-heading {
  font-weight: 600;
  color: #1d1f24;
  line-height: 1.4;
}

.toc-sidebar-right .toc-cta-button {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .toc-sidebar-right {
    display: none;
  }
}
