.baji-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 45px;
    left: 0;
    background: #111;
    color: #fff;
    overflow-y: auto;
    transition: 0.4s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}



.sidebar-top {
    position: sticky;
    top: 0;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    z-index: 10;
    border-top: 1px solid #ffffff70;
}

.live-support {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
}

.sidebar-banner img {
    width: 100%;
    margin: 10px 0;
    border-radius: 6px;
}

.sidebar-menu {
    flex-grow: 1;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.menu-item:hover {
    background: #111;
}

/* Submenu animation */
.submenu {
    max-height: 0;
    overflow: hidden;
    background: #111;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 10px;
}

.submenu.open {
    max-height: 500px;
    /* enough height to show items */
    padding: 10px;
}

.submenu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.submenu-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1c1c1c;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.submenu-grid a:hover {
    background: #111;
    color: #fff;
}

.submenu-grid img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.menu-label {
    display: flex;
    align-items: center;
    /* img আর text vertical center হবে */
    gap: 8px;
    /* ইমেজ আর টেক্সট এর মাঝে spacing */
}

.menu-label img {
    width: 20px;
    /* সাইজ চাইলে ছোট করতে পারো */
    height: 20px;
    object-fit: contain;
}

.menu-item a {
    text-decoration: none;
    color: white;
}