/* Sidebar Toggle for Mobile */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-toggle.right {
    left: auto;
    right: 1rem;
}

.sidebar-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Documentation */
@media (max-width: 1024px) {
    .sidebar-toggle {
        display: flex;
    }
}