.docs-container {
  display: flex;
  margin-top: 2rem;
  min-height: calc(100vh - 200px);
}

.docs-sidebar {
  width: 250px;
  background-color: #f8f9fa;
  padding: 2rem 1rem;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  border-right: 1px solid #e9ecef;
}

.sidebar-section {
  margin-bottom: 1.5rem;
}

.sidebar-section h3 {
  color: #343a40;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sidebar-section ul {
  list-style: none;
  padding-left: 0.5rem;
}

.sidebar-section li {
  margin-bottom: 0.75rem;
}

.sidebar-section a {
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.sidebar-section a:hover {
  background-color: #e9ecef;
  color: var(--primary);
}

.sidebar-section a.active {
  background-color: var(--primary);
  color: white;
}

.docs-content {
  flex: 1;
  padding: 2rem;
  max-width: 900px;
}
.docs-section {
  margin-bottom: 3rem;
}

.docs-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  -webkit-text-fill-color: var(--dark);
  background: none;
}

.docs-section h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
}

.docs-section h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.docs-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.docs-section ul, .docs-section ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.docs-section li {
  margin-bottom: 0.5rem;
}

.code-block {
  background-color: #2d2d2d;
  color: #f8f8f2;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  overflow-x: auto;
}

.code-block pre {
  margin: 0;
  font-family: monospace;
}

.warning-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warning-box i {
  color: #ffc107;
  font-size: 1.5rem;
}

.warning-box h4 {
  margin-bottom: 0.5rem;
  color: #856404;
}

.endpoint-table {
  margin: 1rem 0;
  overflow-x: auto;
}

.endpoint-table table {
  width: 100%;
  border-collapse: collapse;
}

.endpoint-table th, .endpoint-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.endpoint-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}
