.docs-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.docs-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    height: fit-content;
    max-height: calc(100vh - var(--nav-height) - 40px);
    overflow-y: auto;
}

.docs-nav {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.docs-nav h3 {
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.docs-nav ul {
    list-style: none;
}

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

.docs-nav a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.docs-nav a:hover {
    color: var(--accent-cyan);
}

.docs-content {
    min-width: 0;
}

.docs-content h1 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.docs-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-text);
}

.docs-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.docs-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--secondary-text);
}

.docs-content ul,
.docs-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--secondary-text);
}

.docs-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.note {
    background: rgba(0, 212, 230, 0.1);
    border-left: 4px solid var(--accent-cyan);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .docs-container {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
} 