.sidebar-wrapper {
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    min-width: 100px;
    height: 100vh;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar.sidebar-right {
    left: auto;
    right: 0;
    transform: translateX(100%);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100vh;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-content {
    overflow: auto;
}

.sidebar-wrapper.open .sidebar {
    transform: translateX(0);
}

.sidebar-wrapper.open .sidebar-overlay {
    opacity: 1;
}