.sidebar {
    position: fixed;
    height: 100%;
    width: 250px;
    top: 0;
    left: -255px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 10001; 
    overflow: hidden;
}

.sidebar.rtl{
    direction: rtl;
    left: unset;
    right: -250px;
}
 
.sidebar.active {
    left: 0; 
}
.sidebar.active.rtl{
    left: unset;
    right: 0px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-content {
    position: relative;
    width: 100%;
    padding: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
}

.overlay.active {
    display: block;
}

.toggle-btn {
    padding: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}


#showside{
    display: none;
    font-size: 34px;
    line-height: 40px;
    text-align: left;
}
@media screen and (max-width: 960px) {
    #showside{
        display: block !important;
    }
}