/* Documentation sidebar styles */

.sidebar .nav-link {
    color: #6c757d;
    padding: 0.5rem 1rem;
    font-weight: 400;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
    border-left-color: #0d6efd;
}

.sidebar .nav-link.active {
    color: #0d6efd;
    font-weight: 500;
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 3px solid #0d6efd;
}

.sidebar-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Make sidebar sticky on larger screens */
@media (min-width: 768px) {
    .sidebar .position-sticky {
        position: sticky;
        top: 1rem;
        height: calc(100vh - 2rem);
        overflow-y: auto;
    }
} 