/* Table of Contents Component Styles */

.lc-table-of-contents {
  display: none;
}

@media (min-width: 768px) {
  .lc-table-of-contents {
    display: block;
    /* Removed position: sticky as it will be handled in Elementor */
  }
}

.lc-toc-container {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.lc-toc-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.lc-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lc-toc-list li {
  margin-bottom: 8px;
}

.lc-toc-list li:last-child {
  margin-bottom: 0;
}

.lc-toc-link {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lc-toc-link:hover {
  background-color: rgba(243, 244, 246, 0.5);
  color: #111827;
}

.lc-toc-link.active {
  background-color: rgba(243, 244, 246, 0.7);
  border-left: 2px solid #fe3e6d;
  color: #111827;
}
