.ag-toc-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
}

.ag-toc-left, .ag-toc-right {
  position: absolute;
  top: 80px;
  width: 250px;
  max-height: calc(100vh - 100px);
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  pointer-events: auto;
  overflow-y: auto;
}

/* Inline TOC for 3-column layout */
.inline-toc h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
}

.has-toc-sidebar .ag-toc-container {
  display: none;
}

/* TOC Module Integration */
.ag-toc-left {
  left: 20px;
}

.ag-toc-right {
  right: 20px;
}

.ag-toc-header {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ag-toc-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.ag-toc-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.ag-toc-list, .ag-field-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ag-toc-item {
  border-bottom: 1px solid #f0f0f0;
}

.ag-toc-link {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
  cursor: pointer;
}

.ag-toc-link:hover {
  background: #f8f9fa;
  color: #007bff;
}

.ag-toc-link.active {
  background: #007bff;
  color: white;
  font-weight: 500;
}

.ag-toc-h1 .ag-toc-link { padding-left: 15px; }
.ag-toc-h2 .ag-toc-link { padding-left: 25px; }
.ag-toc-h3 .ag-toc-link { padding-left: 35px; }
.ag-toc-h4 .ag-toc-link { padding-left: 45px; }

.ag-field-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
}

.ag-field-title {
  flex: 1;
  color: #666;
}

.ag-field-status {
  font-size: 14px;
  color: #ccc;
}

.ag-field-item.filled .ag-field-status {
  color: #28a745;
}

.ag-mobile-toc-trigger {
  display: none;
  position: fixed;
  top: 70px;
  right: 20px;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .ag-toc-container {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: auto;
    background: rgba(0,0,0,0.5);
    display: none;
  }
  
  .ag-toc-container.mobile-open {
    display: block;
  }
  
  .ag-toc-left, .ag-toc-right {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 20px);
    margin: 10px;
    max-height: 300px;
  }
  
  .ag-toc-right {
    margin-top: 0;
  }
  
  .ag-toc-toggle, .ag-mobile-toc-trigger {
    display: block;
  }
}

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