/* Documentation Viewer Styles */
.docs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  max-height: 200px;
  overflow-y: auto;
}

.docs-item {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  color: #d4af37;
  border: 1px solid transparent;
}

.docs-item:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
}

.docs-content {
  background: #1a1a1a;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  max-height: 500px;
  overflow-y: auto;
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 13px;
  line-height: 1.6;
}

.docs-content pre {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}
