
/* Docs Layout */
.docs-layout {
    display: flex;
    padding-top: 80px;
    min-height: 100vh;
}

/* Sidebar */
.docs-sidebar {
    width: 280px;
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 0;
    overflow-y: auto;
    z-index: 100;
}

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

.sidebar-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888899;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin: 0;
}

.sidebar-links a {
    display: block;
    padding: 0.5rem 2rem;
    color: #9898a8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-links a:hover, .sidebar-links a.active {
    background: rgba(26, 26, 37, 0.6);
    color: #00d4ff;
    border-left-color: #00d4ff;
}

/* Main Content */
.docs-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    max-width: calc(100vw - 280px - 220px);
}

@media (max-width: 1200px) {
    .docs-content { max-width: 100%; }
}

@media (max-width: 768px) {
    .docs-sidebar { display: none; }
    .docs-content {
        margin-left: 0;
        padding: 2rem;
    }
}
