#adpai-playbook-sidebar{

    position:fixed;

    top:0;

    right:-550px;

    width:550px;

    max-width:95vw;

    height:100vh;

    background:#f8f9fb;

    border-left:1px solid #e5e7eb;

    z-index:99999;

    overflow-y:auto;

    transition:right .25s ease;

    box-shadow:
    -20px 0 40px rgba(0,0,0,.08);

    direction:rtl;

    font-family:'Cairo',sans-serif;
}

#adpai-playbook-sidebar.open{

    right:0;
}

#adpai-playbook-content{

    padding:24px;
}

.adpai-playbook-section{

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:18px;

    margin-bottom:16px;
}


.adpai-playbook-section h3{

    margin:0 0 14px;

    font-size:14px;

    font-weight:700;

    color:#111827;
}


.adpai-playbook-section ul{

    margin:0;

    padding-right:18px;
}

.adpai-playbook-section li{

    margin-bottom:10px;

    line-height:1.7;
}

#adpai-playbook-backdrop{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.35);

    backdrop-filter:blur(2px);

    opacity:0;

    visibility:hidden;

    transition:.2s;

    z-index:9998;
}

#adpai-playbook-backdrop.open{

    opacity:1;

    visibility:visible;
}





.adpai-sidebar-header{

    position:sticky;

    top:0;

    z-index:10;

    background:#fff;

    padding:20px 24px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px solid #ececec;
}

.adpai-playbook-tabs{

    display:flex;

    gap:8px;

    padding:16px 24px;

    border-bottom:1px solid #ececec;

    overflow-x:auto;

    background:#fff;

    position:sticky;

    top:77px;

    z-index:9;
}

.playbook-tab{

    border:none;

    background:#f3f4f6;

    padding:10px 14px;

    border-radius:10px;

    cursor:pointer;

    white-space:nowrap;

    font-size:13px;

    transition:.2s;
}

.playbook-tab.active{

    background:#111;

    color:#fff;
}

.playbook-tab-content{

    padding:24px;
}

#adpai-playbook-title{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#111827;
}


#adpai-playbook-close{

    width:36px;

    height:36px;

    border:none;

    border-radius:50%;

    background:#f3f4f6;

    cursor:pointer;

    font-size:18px;

    transition:.2s;
}

#adpai-playbook-close:hover{

    background:#e5e7eb;
}