#vakaDanismaSection .vd-shell{
    position:relative;
    border-radius:32px;
    padding:24px;
    background:
        radial-gradient(circle at top left, rgba(39,174,96,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(99,102,241,.08), transparent 26%),
        linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
    border:1px solid rgba(17,24,39,.08);
    box-shadow:0 24px 70px rgba(16,24,40,.08);
}

#vakaDanismaSection .vd-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:24px;
    border-radius:28px;
    background:linear-gradient(135deg,#0f172a 0%,#172033 45%,#1f2937 100%);
    color:#fff;
    margin-bottom:20px;
}

#vakaDanismaSection .vd-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.85rem;
    font-weight:700;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.11);
    margin-bottom:10px;
}

#vakaDanismaSection .vd-title{
    margin:0;
    font-size:clamp(1.6rem,2vw,2.2rem);
    font-weight:800;
    letter-spacing:-.02em;
    color:#ffffff;
}

#vakaDanismaSection .vd-subtitle{
    margin:8px 0 0;
    color:rgba(255,255,255,.82);
}

#vakaDanismaSection .vd-member-chip{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:20px;
    background:rgba(255,255,255,.10);
    min-width:220px;
    color:#fff;
}

#vakaDanismaSection .vd-tabs-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

#vakaDanismaSection .vd-tab-btn{
    border:1px solid rgba(17,24,39,.08);
    background:#fff;
    color:#111827;
    border-radius:999px;
    padding:10px 16px;
    font-weight:700;
    transition:.2s ease;
}

#vakaDanismaSection .vd-tab-btn:hover{
    transform:translateY(-1px);
}

#vakaDanismaSection .vd-tab-btn.is-active{
    background:#111827;
    color:#fff;
    border-color:#111827;
}

#vakaDanismaSection .vd-feed-card{
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(12px);
    border:1px solid rgba(17,24,39,.08);
    border-radius:26px;
    padding:18px;
}

#vakaDanismaSection .vd-feed-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:16px;
}

#vakaDanismaSection .vd-card-title{
    font-weight:800;
    font-size:1.1rem;
    color:#111827;
}

#vakaDanismaSection .vd-live-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ecfdf3;
    color:#027a48;
    border:1px solid #abefc6;
    padding:8px 12px;
    border-radius:999px;
    font-weight:700;
    font-size:.9rem;
}

#vakaDanismaSection .vd-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#12b76a;
    display:inline-block;
    animation:vdPulse 1.6s infinite;
}

@keyframes vdPulse{
    0%{box-shadow:0 0 0 0 rgba(18,183,106,.50);}
    70%{box-shadow:0 0 0 10px rgba(18,183,106,0);}
    100%{box-shadow:0 0 0 0 rgba(18,183,106,0);}
}

#vakaDanismaSection .vd-post-card{
    background:#fff;
    border:1px solid rgba(17,24,39,.08);
    border-radius:24px;
    padding:18px;
    margin-bottom:16px;
    box-shadow:0 14px 34px rgba(16,24,40,.05);
    transition:.22s ease;
}

#vakaDanismaSection .vd-post-card:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 42px rgba(16,24,40,.08);
}

#vakaDanismaSection .vd-post-card.is-mine{
    border-color:#c7d7fe;
    background:linear-gradient(180deg,#ffffff 0%,#f7f9ff 100%);
}

#vakaDanismaSection .vd-post-card.is-new-highlight{
    animation:vdHighlight 1.8s ease;
}

@keyframes vdHighlight{
    0%{box-shadow:0 0 0 rgba(59,130,246,0);}
    20%{box-shadow:0 0 0 4px rgba(59,130,246,.20);}
    100%{box-shadow:0 14px 34px rgba(16,24,40,.05);}
}

#vakaDanismaSection .vd-post-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:12px;
}

#vakaDanismaSection .vd-user-badge{
    display:flex;
    align-items:flex-start;
    gap:12px;
    min-width:0;
}

#vakaDanismaSection .vd-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    flex:0 0 44px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#111827,#374151);
    color:#fff;
    font-weight:800;
    box-shadow:0 8px 20px rgba(17,24,39,.18);
}

#vakaDanismaSection .vd-avatar.lg{
    width:52px;
    height:52px;
    flex-basis:52px;
}

#vakaDanismaSection .vd-avatar.xl{
    width:56px;
    height:56px;
    flex-basis:56px;
}

#vakaDanismaSection .vd-post-name{
    margin:0 0 4px;
    font-size:1rem;
    font-weight:800;
    color:#111827;
}

#vakaDanismaSection .vd-owner-badge-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

#vakaDanismaSection .vd-owner-badge,
#vakaDanismaSection .vd-reply-red-badge{
    display:inline-flex;
    align-items:center;
    padding:5px 10px;
    border-radius:999px;
    font-size:.78rem;
    font-weight:800;
}

#vakaDanismaSection .vd-owner-badge{
    background:#eef4ff;
    color:#3538cd;
}

#vakaDanismaSection .vd-reply-red-badge{
    background:#fff1f1;
    color:#c81e1e;
}

#vakaDanismaSection .vd-post-date-wrap{
    color:#667085;
    font-size:.85rem;
    white-space:nowrap;
}

#vakaDanismaSection .vd-post-message,
#vakaDanismaSection .vd-detail-message,
#vakaDanismaSection .vd-reply-text{
    color:#111827;
    line-height:1.72;
    word-break:break-word;
}

#vakaDanismaSection .vd-post-foot{
    margin-top:14px;
}

#vakaDanismaSection .vd-detail-btn{
    border:0;
    border-radius:999px;
    background:#111827;
    color:#fff;
    padding:9px 14px;
    font-weight:700;
}

#vakaDanismaSection .vd-detail-btn:hover{
    background:#1f2937;
    color:#fff;
}

#vakaDanismaSection .vd-live-count.is-bumped{
    animation:vdBump .45s ease;
    display:inline-block;
}

@keyframes vdBump{
    0%{transform:scale(1);}
    50%{transform:scale(1.12);}
    100%{transform:scale(1);}
}

#vakaDanismaSection .vd-detail-block{
    margin-top:16px;
    padding-top:16px;
    border-top:1px dashed #d0d5dd;
}

#vakaDanismaSection .vd-detail-author-row{
    display:flex;
    align-items:center;
    gap:12px;
}

#vakaDanismaSection .vd-detail-name{
    font-weight:800;
    color:#111827;
}

#vakaDanismaSection .vd-detail-date,
#vakaDanismaSection .vd-reply-date{
    color:#667085;
    font-size:.84rem;
}

#vakaDanismaSection .vd-replies-box{
    border:1px solid rgba(17,24,39,.08);
    border-radius:20px;
    padding:14px;
    background:#fafbff;
}

#vakaDanismaSection .vd-replies-title{
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

#vakaDanismaSection .vd-replies-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

#vakaDanismaSection .vd-reply-item{
    background:#fff;
    border:1px solid rgba(17,24,39,.08);
    border-radius:16px;
    padding:12px;
}

#vakaDanismaSection .vd-reply-item.is-private{
    border-left:4px solid #f59e0b;
}

#vakaDanismaSection .vd-reply-item.is-public{
    border-left:4px solid #10b981;
}

#vakaDanismaSection .vd-reply-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:8px;
}

#vakaDanismaSection .vd-reply-empty,
#vakaDanismaSection .vd-empty-box{
    text-align:center;
    border:1px dashed #d0d5dd;
    border-radius:20px;
    padding:28px 16px;
    color:#667085;
    background:#fcfcfd;
}

#vakaDanismaSection .vd-empty-icon{
    font-size:2rem;
    color:#98a2b3;
    margin-bottom:8px;
}

#vakaDanismaSection .vd-textarea{
    border-radius:18px;
    min-height:110px;
    padding:14px 16px;
    border:1px solid #d0d5dd;
}

#vakaDanismaSection .vd-textarea:focus{
    box-shadow:0 0 0 4px rgba(17,24,39,.08);
    border-color:#98a2b3;
}

.vd-write-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9998;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,#111827,#2b3548);
    color:#fff;
    padding:14px 20px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 18px 40px rgba(17,24,39,.28);
}

.vd-custom-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
}

.vd-custom-modal.is-open{
    display:flex;
}

.vd-custom-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(2,6,23,.62);
    backdrop-filter:blur(4px);
}

.vd-custom-modal-box{
    position:relative;
    z-index:2;
    width:min(100%,640px);
    background:#fff;
    border-radius:28px;
    padding:24px;
    box-shadow:0 25px 80px rgba(0,0,0,.24);
}

.vd-write-box{
    width:min(100%,700px);
}

.vd-success-box{
    width:min(100%,460px);
}

.vd-modal-title{
    font-size:1.7rem;
    font-weight:800;
    color:#111827;
    margin-bottom:6px;
}

.vd-modal-subtitle{
    color:#667085;
    margin-bottom:18px;
}

.vd-modal-close{
    position:absolute;
    top:10px;
    right:14px;
    border:0;
    background:transparent;
    font-size:2rem;
    line-height:1;
    color:#667085;
}

.vd-success-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 14px;
    background:#ecfdf3;
    color:#16a34a;
    font-size:2.3rem;
}

.vd-success-title{
    font-size:1.45rem;
    font-weight:800;
    color:#111827;
}

.vd-success-text{
    margin-top:8px;
    color:#667085;
    line-height:1.65;
}

.vd-toast-wrap{
    position:fixed;
    top:18px;
    right:18px;
    z-index:10000;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.vd-toast{
    min-width:280px;
    max-width:380px;
    background:#111827;
    color:#fff;
    border-radius:18px;
    padding:14px 16px;
    box-shadow:0 18px 45px rgba(0,0,0,.20);
    opacity:0;
    transform:translateY(-8px);
    transition:.28s ease;
}

.vd-toast.is-show{
    opacity:1;
    transform:translateY(0);
}

.vd-toast-title{
    font-weight:800;
    margin-bottom:4px;
}

.vd-toast-text{
    font-size:.92rem;
    color:rgba(255,255,255,.88);
}

.vd-post-image-trigger{
    display:block;
    width:100%;
    background:transparent;
    border:0;
    padding:0;
    margin-top:12px;
    text-align:left;
    cursor:pointer;
}

.vd-post-image{
    display:block;
    width:auto;
    max-width:100%;
    height:auto;
    max-height:420px;
    border-radius:18px;
    object-fit:contain;
    border:1px solid rgba(17,24,39,.08);
    background:#f8fafc;
    box-shadow:0 10px 26px rgba(16,24,40,.08);
}

.vd-image-modal{
    position:fixed;
    inset:0;
    z-index:10001;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.vd-image-modal.is-open{
    display:flex;
}

.vd-image-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.78);
}

.vd-image-modal-dialog{
    position:relative;
    z-index:2;
    max-width:min(96vw,1200px);
    max-height:92vh;
}

.vd-image-modal-dialog img{
    display:block;
    max-width:100%;
    max-height:92vh;
    width:auto;
    height:auto;
    border-radius:20px;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
}

.vd-image-modal-close{
    position:absolute;
    top:-14px;
    right:-8px;
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:#fff;
    color:#111827;
    font-size:30px;
    line-height:1;
    box-shadow:0 8px 24px rgba(0,0,0,.25);
}

@media (max-width:991.98px){
    #vakaDanismaSection .vd-hero{
        flex-direction:column;
        align-items:flex-start;
    }

    .vd-post-image{
        max-height:320px;
    }
}

@media (max-width:767.98px){
    #vakaDanismaSection .vd-shell{
        padding:16px;
        border-radius:24px;
    }

    #vakaDanismaSection .vd-hero{
        padding:18px;
        border-radius:22px;
    }

    #vakaDanismaSection .vd-feed-card{
        padding:14px;
        border-radius:20px;
    }

    #vakaDanismaSection .vd-post-head{
        flex-direction:column;
    }

    #vakaDanismaSection .vd-post-date-wrap{
        white-space:normal;
        text-align:left !important;
    }

    .vd-post-image{
        max-height:240px;
    }

    .vd-write-btn{
        left:14px;
        right:14px;
        bottom:14px;
        justify-content:center;
    }

    .vd-toast-wrap{
        left:12px;
        right:12px;
        top:12px;
    }

    .vd-toast{
        min-width:0;
        max-width:none;
        width:100%;
    }
}
.vd-post-foot-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.vd-reply-open-btn{
    border:1px solid rgba(17,24,39,.10);
    background:#f8fafc;
    color:#111827;
    border-radius:999px;
    padding:9px 14px;
    font-weight:700;
}

.vd-reply-open-btn:hover{
    background:#eef2f7;
    color:#111827;
}

.vd-reply-box{
    width:min(100%,620px);
}
.vd-toolbar{
    display:flex;
    justify-content:flex-end;
    margin-bottom:16px;
}

.vd-older-btn{
    border:1px solid rgba(17,24,39,.10);
    background:#fff;
    color:#111827;
    border-radius:999px;
    padding:10px 14px;
    font-weight:700;
}

.vd-older-btn.is-active{
    background:#111827;
    color:#fff;
    border-color:#111827;
}

.vd-feed-loader{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 12px;
    color:#667085;
}

.vd-post-images-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:8px;
    margin-top:14px;
}

.vd-post-images-grid .vd-post-image-trigger{
    width:100%;
    padding:0;
    margin:0;
    background:transparent;
    border:0;
}

.vd-post-images-grid .vd-post-image{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:14px;
    display:block;
}

.vd-ig-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
}

.vd-icon-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(17,24,39,.10);
    background:#fff;
    color:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
    transition:.2s ease;
}

.vd-icon-btn:hover{
    transform:translateY(-1px);
    background:#f8fafc;
}

.vd-ig-stat{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;
    color:#475467;
    font-weight:700;
}

@media (max-width: 767.98px){
    .vd-post-images-grid{
        grid-template-columns:repeat(3, minmax(0,1fr));
        gap:6px;
    }

    .vd-post-images-grid .vd-post-image{
        height:104px;
        border-radius:12px;
    }

    .vd-icon-btn{
        width:40px;
        height:40px;
    }
}
.vd-ig-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
    flex-wrap:wrap;
}

.vd-mini-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:38px;
    padding:8px 14px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#ffffff 0%, #f3f7fb 100%);
    color:#183247;
    box-shadow:0 10px 24px rgba(19,37,56,.08);
    font-weight:700;
    font-size:.92rem;
    transition:.22s ease;
    position:relative;
}

.vd-mini-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 28px rgba(19,37,56,.12);
    background:linear-gradient(135deg,#fdfefe 0%, #eaf3fb 100%);
}

.vd-mini-btn.is-open{
    background:linear-gradient(135deg,#0f766e 0%, #155e75 100%);
    color:#fff;
}

.vd-mini-count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:22px;
    height:22px;
    padding:0 6px;
    border-radius:999px;
    background:#102a43;
    color:#fff;
    font-size:.74rem;
    font-weight:800;
    line-height:1;
}

.vd-mini-btn.is-open .vd-mini-count{
    background:#fff;
    color:#0f766e;
}

.vd-detail-block{
    margin-top:14px;
    border-top:1px solid rgba(15,23,42,.08);
    padding-top:14px;
}

.vd-inline-loader,
.vd-empty-replies{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:72px;
    border-radius:18px;
    background:#f7fafc;
    color:#5b6b7c;
    font-weight:600;
    text-align:center;
    padding:18px;
}

.vd-inline-loader i{
    margin-right:8px;
    animation:vdSpin 1s linear infinite;
}

@keyframes vdSpin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

.vd-replies-only-wrap{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.vd-reply-item{
    background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    padding:14px 15px;
    box-shadow:0 10px 22px rgba(15,23,42,.05);
}

.vd-reply-item.is-private{
    border-color:rgba(245,158,11,.28);
    background:linear-gradient(180deg,#fffdf7 0%, #fff8e7 100%);
}

.vd-reply-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    flex-wrap:wrap;
}

.vd-reply-author{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.vd-reply-author-name{
    font-weight:800;
    color:#17324a;
}

.vd-reply-visibility{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:24px;
    padding:4px 10px;
    border-radius:999px;
    font-size:.74rem;
    font-weight:800;
}

.vd-reply-visibility.is-public{
    background:rgba(16,185,129,.12);
    color:#0f766e;
}

.vd-reply-visibility.is-private{
    background:rgba(245,158,11,.14);
    color:#b45309;
}

.vd-reply-date{
    color:#6b7280;
    font-size:.82rem;
    font-weight:600;
}

.vd-reply-text{
    color:#22384a;
    line-height:1.72;
    word-break:break-word;
}

.vd-write-btn{
    position:fixed;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    z-index:1040;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    padding:0 22px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#0f172a 0%, #1e293b 100%);
    color:#fff;
    box-shadow:0 18px 38px rgba(2,6,23,.28);
    font-size:1rem;
    font-weight:800;
    letter-spacing:.01em;
    transition:.22s ease;
}

.vd-write-btn:hover{
    transform:translateX(-50%) translateY(-2px);
    box-shadow:0 22px 44px rgba(2,6,23,.34);
}

.vd-write-btn i{
    font-size:1.05rem;
}

.vd-write-btn-text{
    white-space:nowrap;
}

@media (max-width: 767.98px){
    .vd-write-btn{
        min-width:58px;
        width:58px;
        height:58px;
        padding:0;
        border-radius:50%;
    }

    .vd-write-btn-text{
        display:none;
    }

    .vd-mini-btn{
        font-size:.86rem;
        padding:8px 12px;
    }
}
.vd-ig-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
    flex-wrap:wrap;
}

.vd-mini-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:38px;
    padding:8px 14px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#ffffff 0%, #f3f7fb 100%);
    color:#183247;
    box-shadow:0 10px 24px rgba(19,37,56,.08);
    font-weight:700;
    font-size:.92rem;
    transition:.22s ease;
    position:relative;
    cursor:pointer;
}

.vd-mini-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 28px rgba(19,37,56,.12);
    background:linear-gradient(135deg,#fdfefe 0%, #eaf3fb 100%);
}

.vd-mini-btn.is-open{
    background:linear-gradient(135deg,#0f766e 0%, #155e75 100%);
    color:#fff;
}

.vd-mini-count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:22px;
    height:22px;
    padding:0 6px;
    border-radius:999px;
    background:#102a43;
    color:#fff;
    font-size:.74rem;
    font-weight:800;
    line-height:1;
}

.vd-mini-btn.is-open .vd-mini-count{
    background:#fff;
    color:#0f766e;
}

.vd-mini-btn-danger{
    background:linear-gradient(135deg,#fff1f2 0%, #ffe4e6 100%);
    color:#b42318;
}

.vd-mini-btn-danger:hover{
    background:linear-gradient(135deg,#ffe4e6 0%, #fecdd3 100%);
    color:#912018;
}

.vd-mini-btn-danger.is-loading{
    opacity:.7;
    pointer-events:none;
}

.vd-detail-block{
    margin-top:14px;
    border-top:1px solid rgba(15,23,42,.08);
    padding-top:14px;
}

.vd-inline-loader,
.vd-empty-replies{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:72px;
    border-radius:18px;
    background:#f7fafc;
    color:#5b6b7c;
    font-weight:600;
    text-align:center;
    padding:18px;
}

.vd-inline-loader i{
    margin-right:8px;
    animation:vdSpin 1s linear infinite;
}

@keyframes vdSpin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

.vd-replies-only-wrap{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.vd-reply-item{
    background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    padding:14px 15px;
    box-shadow:0 10px 22px rgba(15,23,42,.05);
}

.vd-reply-item.is-private{
    border-color:rgba(245,158,11,.28);
    background:linear-gradient(180deg,#fffdf7 0%, #fff8e7 100%);
}

.vd-reply-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    flex-wrap:wrap;
}

.vd-reply-author{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.vd-reply-author-name{
    font-weight:800;
    color:#17324a;
}

.vd-reply-visibility{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:24px;
    padding:4px 10px;
    border-radius:999px;
    font-size:.74rem;
    font-weight:800;
}

.vd-reply-visibility.is-public{
    background:rgba(16,185,129,.12);
    color:#0f766e;
}

.vd-reply-visibility.is-private{
    background:rgba(245,158,11,.14);
    color:#b45309;
}

.vd-reply-date{
    color:#6b7280;
    font-size:.82rem;
    font-weight:600;
}

.vd-reply-text{
    color:#22384a;
    line-height:1.72;
    word-break:break-word;
}

.vd-write-btn{
    position:fixed;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    z-index:1040;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    padding:0 22px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#0f172a 0%, #1e293b 100%);
    color:#fff;
    box-shadow:0 18px 38px rgba(2,6,23,.28);
    font-size:1rem;
    font-weight:800;
    letter-spacing:.01em;
    transition:.22s ease;
    cursor:pointer;
}

.vd-write-btn:hover{
    transform:translateX(-50%) translateY(-2px);
    box-shadow:0 22px 44px rgba(2,6,23,.34);
}

.vd-write-btn i{
    font-size:1.05rem;
}

.vd-write-btn-text{
    white-space:nowrap;
}

@media (max-width: 767.98px){
    .vd-write-btn{
        min-width:58px;
        width:58px;
        height:58px;
        padding:0;
        border-radius:50%;
    }

    .vd-write-btn-text{
        display:none;
    }

    .vd-mini-btn{
        font-size:.86rem;
        padding:8px 12px;
    }
}
.vd-replies-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:14px;
}

.vd-reply-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:14px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.vd-reply-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.vd-reply-user-top{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.vd-reply-date{
  font-size:.85rem;
  color:#6c757d;
  margin-top:3px;
}

.vd-reply-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.vd-reply-body{
  white-space:normal;
  word-break:break-word;
  color:#24323f;
  line-height:1.6;
}

.vd-mini-btn-danger{
  background:#fff1f2;
  border:1px solid #fecdd3;
  color:#be123c;
}

.vd-mini-btn-danger:hover{
  background:#ffe4e6;
  color:#9f1239;
}
.vd-replies-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:14px;
}

.vd-reply-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:14px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.vd-reply-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.vd-reply-user-top{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.vd-reply-date{
  font-size:.85rem;
  color:#6c757d;
  margin-top:3px;
}

.vd-reply-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.vd-reply-body{
  white-space:normal;
  word-break:break-word;
  color:#24323f;
  line-height:1.6;
}

.vd-mini-btn-danger{
  background:#fff1f2;
  border:1px solid #fecdd3;
  color:#be123c;
}

.vd-mini-btn-danger:hover{
  background:#ffe4e6;
  color:#9f1239;
}