body .ps-sidebar-modern{
            direction:rtl;
            display:flex;
            flex-direction:column;
            gap:18px;
        }

        body .ps-sidebar-card{
            position:relative;
            overflow:hidden;
            border-radius:26px;
            padding:16px;
            background:rgba(255,255,255,.94);
            border:1px solid rgba(15,23,42,.08);
            box-shadow:0 14px 32px rgba(2,6,23,.055);
        }

        body .ps-sidebar-card:before{
            content:"";
            position:absolute;
            inset:-80px auto auto -80px;
            width:160px;
            height:160px;
            border-radius:999px;
            background:radial-gradient(circle, rgba(16,185,129,.12), transparent 68%);
            pointer-events:none;
        }

        body .ps-sidebar-card > *{
            position:relative;
            z-index:2;
        }

        body .ps-sidebar-title{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:10px;
            margin-bottom:14px;
            color:#0f172a;
            font-weight:950;
            line-height:1.5;
        }

        body .ps-sidebar-title span{
            display:flex;
            align-items:center;
            gap:9px;
        }

        body .ps-sidebar-title span:before{
            content:"";
            width:8px;
            height:24px;
            border-radius:999px;
            background:linear-gradient(180deg,var(--brand,#0284c7),#10b981);
            display:inline-block;
            flex:0 0 auto;
        }

        body .ps-sidebar-title i{
            color:var(--brand,#0284c7);
            opacity:.92;
        }

        body .ps-sidebar-search{
            display:flex;
            align-items:stretch;
            gap:8px;
            padding:8px;
            border-radius:20px;
            background:linear-gradient(135deg,rgba(2,132,199,.08),rgba(16,185,129,.055));
            border:1px solid rgba(15,23,42,.075);
        }

        body .ps-sidebar-search input{
            flex:1;
            min-width:0;
            min-height:46px;
            border:0;
            outline:0;
            border-radius:15px;
            background:#fff;
            padding:0 13px;
            color:#0f172a;
            font-weight:850;
        }

        body .ps-sidebar-search input:focus{
            box-shadow:0 0 0 4px rgba(2,132,199,.10);
        }

        body .ps-sidebar-search button{
            width:46px;
            height:46px;
            border:0;
            border-radius:15px;
            display:grid;
            place-items:center;
            color:#fff;
            background:linear-gradient(135deg,var(--brand,#0284c7),#10b981);
            box-shadow:0 10px 20px rgba(2,132,199,.16);
            cursor:pointer;
            transition:.18s ease;
        }

        body .ps-sidebar-search button:hover{
            transform:translateY(-2px);
        }

        body .ps-sidebar-list{
            list-style:none;
            margin:0;
            padding:0;
            display:flex;
            flex-direction:column;
            gap:10px;
        }

        body .ps-sidebar-link{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:10px;
            min-height:48px;
            padding:10px 12px;
            border-radius:18px;
            background:linear-gradient(135deg,rgba(2,132,199,.07),rgba(16,185,129,.045));
            border:1px solid rgba(15,23,42,.065);
            color:#0f172a;
            font-weight:920;
            transition:.18s ease;
        }

        body .ps-sidebar-link:hover{
            transform:translateY(-2px);
            border-color:rgba(2,132,199,.18);
            box-shadow:0 12px 24px rgba(2,6,23,.06);
            color:var(--brand,#0284c7);
        }

        body .ps-sidebar-link-text{
            display:flex;
            align-items:center;
            gap:8px;
            min-width:0;
        }

        body .ps-sidebar-link-text:before{
            content:"";
            width:8px;
            height:8px;
            border-radius:999px;
            background:linear-gradient(135deg,var(--brand,#0284c7),#10b981);
            flex:0 0 auto;
        }

        body .ps-sidebar-link-text span{
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
        }

        body .ps-sidebar-link-meta{
            min-width:32px;
            height:28px;
            padding:0 8px;
            border-radius:999px;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            background:#fff;
            border:1px solid rgba(15,23,42,.08);
            color:rgba(15,23,42,.68);
            font-size:.80rem;
            font-weight:950;
        }

        body .ps-sidebar-posts{
            list-style:none;
            margin:0;
            padding:0;
            display:flex;
            flex-direction:column;
            gap:12px;
        }

        body .ps-sidebar-post{
            display:grid;
            grid-template-columns:88px 1fr;
            gap:11px;
            align-items:center;
            padding:10px;
            border-radius:20px;
            background:linear-gradient(135deg,rgba(2,132,199,.065),rgba(16,185,129,.045));
            border:1px solid rgba(15,23,42,.065);
            transition:.18s ease;
        }

        body .ps-sidebar-post:hover{
            transform:translateY(-2px);
            box-shadow:0 14px 26px rgba(2,6,23,.06);
            border-color:rgba(2,132,199,.18);
        }

        body .ps-sidebar-post-thumb{
            width:88px;
            height:74px;
            border-radius:17px;
            overflow:hidden;
            background:rgba(255,255,255,.75);
            display:block;
        }

        body .ps-sidebar-post-thumb img{
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
            transition:.28s ease;
        }

        body .ps-sidebar-post:hover .ps-sidebar-post-thumb img{
            transform:scale(1.06);
        }

        body .ps-sidebar-post-body{
            min-width:0;
        }

        body .ps-sidebar-post-title{
            display:block;
            color:#0f172a;
            font-weight:950;
            line-height:1.65;
            font-size:.92rem;
        }

        body .ps-sidebar-post-title:hover{
            color:var(--brand,#0284c7);
        }

        body .ps-sidebar-post-meta{
            display:flex;
            align-items:center;
            gap:6px;
            margin-top:6px;
            color:rgba(15,23,42,.60);
            font-size:.80rem;
            font-weight:850;
        }

        body .ps-sidebar-tags{
            display:flex;
            align-items:center;
            gap:8px;
            flex-wrap:wrap;
        }

        body .ps-sidebar-tag{
            display:inline-flex;
            align-items:center;
            gap:6px;
            border-radius:999px;
            padding:.42rem .72rem;
            background:rgba(2,132,199,.10);
            color:var(--brand,#0284c7);
            border:1px solid rgba(2,132,199,.10);
            font-size:.82rem;
            font-weight:950;
            transition:.18s ease;
        }

        body .ps-sidebar-tag:hover{
            transform:translateY(-2px);
            background:linear-gradient(135deg,var(--brand,#0284c7),#10b981);
            color:#fff;
            border-color:transparent;
            box-shadow:0 10px 20px rgba(2,132,199,.14);
        }

        body .ps-sidebar-empty{
            display:block;
            padding:13px 14px;
            border-radius:18px;
            background:rgba(15,23,42,.045);
            color:rgba(15,23,42,.68);
            font-weight:850;
            line-height:1.7;
        }

        body .ps-sidebar-card.is-sticky-note{
            background:linear-gradient(135deg,rgba(2,132,199,.12),rgba(16,185,129,.07));
        }

        body .ps-sidebar-note{
            color:rgba(15,23,42,.72);
            font-weight:800;
            line-height:1.85;
            margin:0;
        }

        body .ps-sidebar-note-actions{
            display:flex;
            gap:8px;
            flex-wrap:wrap;
            margin-top:12px;
        }

        body .ps-sidebar-note-btn{
            display:inline-flex;
            align-items:center;
            gap:7px;
            min-height:40px;
            padding:0 12px;
            border-radius:999px;
            background:#fff;
            color:#0f172a;
            border:1px solid rgba(15,23,42,.08);
            font-weight:950;
            box-shadow:0 8px 18px rgba(2,6,23,.045);
            transition:.18s ease;
        }

        body .ps-sidebar-note-btn:hover{
            transform:translateY(-2px);
            background:linear-gradient(135deg,var(--brand,#0284c7),#10b981);
            color:#fff;
            border-color:transparent;
        }

        @media (max-width:575px){
            body .ps-sidebar-card{border-radius:22px;padding:14px}
            body .ps-sidebar-post{grid-template-columns:78px 1fr}
            body .ps-sidebar-post-thumb{width:78px;height:68px}
        }
