.sidebar {
    position: fixed;
    top: 50px;
    right: -100vw;
    max-height: 80vh;
    transition: right 0.3s ease;
    z-index: 100;
}

.sidebar.active {
    right: 0;
}