.doc-link {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 0.75rem;
    color: var(--slate);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.doc-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    padding-left: 1rem;
}

.doc-link.active {
    background: rgba(0, 122, 255, 0.08);
    color: var(--accent);
    border-color: rgba(0, 122, 255, 0.15);
}

#docs-content-root section {
    scroll-margin-top: 100px;
}

#docs-sidebar::-webkit-scrollbar {
    width: 4px;
}

#docs-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

@media (max-width: 768px) {
    #docs-sidebar.active {
        transform: translateX(0);
    }
}