.report-modal-backdrop{
    position:fixed;
    inset:0;
    z-index:10050;
    background:rgba(15,23,42,.72);
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
}

.shorts-username,
.comment-author,
.user-info h3,
.profile-info h2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.user-badge,
.user-badge-verified {
    flex: 0 0 auto;
    line-height: 0;
}
.report-modal{
    width:min(100%,560px);
    max-height:min(88vh,820px);
    background:#fff;
    border-radius:18px;
    box-shadow:0 24px 64px rgba(15,23,42,.32);
    overflow:hidden;
    display:flex;
    flex-direction:column;
}
.report-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    padding:18px 18px 12px;
    border-bottom:1px solid #e5e7eb;
}
.report-modal-subtitle{
    margin-top:6px;
    font-size:13px;
    color:#64748b;
    line-height:1.5;
    word-break:break-word;
}
.report-modal-body{
    padding:16px 18px 18px;
    overflow-y:auto;
}
.report-form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:14px;
}
.report-form-group label{
    font-size:13px;
    font-weight:600;
    color:#334155;
}
.report-modal-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    padding-top:6px;
}
body.report-modal-open{
    overflow:hidden;
}
body.theme-dark .report-modal{
    background:#0f172a;
    color:#e5e7eb;
}
body.theme-dark .report-modal-header{
    border-color:#1e293b;
}
body.theme-dark .report-modal-subtitle,
body.theme-dark .report-form-group label{
    color:#cbd5e1;
}
@media (max-width: 640px){
    .report-modal-backdrop{padding:10px}
    .report-modal{width:100%;max-height:92vh;border-radius:16px}
}

.comment-content{
    position:relative;
    flex:1 1 auto;
    min-width:0;
    padding-right:46px;
}

.comment-more-wrap{
    position:absolute;
    top:-2px;
    right:0;
    z-index:6;
}

.comment-more-trigger{
    width:32px;
    height:32px;
    border:none;
    border-radius:0;
    background:transparent;
    color:#6b7280;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:none;
}

.comment-more-menu{
    position:absolute;
    top:calc(100% + 6px);
    right:0;
    min-width:190px;
    display:none;
    flex-direction:column;
    padding:6px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    box-shadow:0 18px 48px rgba(15,23,42,.16);
    z-index:40;
}

.comment-more-wrap.open .comment-more-menu{
    display:flex;
}

.comment-more-item{
    width:100%;
    border:0;
    background:#fff;
    color:#111827;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 12px;
    cursor:pointer;
    text-align:left;
    font-size:13px;
    font-weight:600;
}

.comment-more-item:hover{
    background:#f8fafc;
}

.comment-more-item i{
    width:16px;
    text-align:center;
    color:#6b7280;
}

.comment-more-item.danger,
.comment-more-item.danger i{
    color:#dc2626;
}

.comment-edit-modal-backdrop{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(15,23,42,.48);
    z-index:3005;
}

.comment-edit-modal-backdrop.open{
    display:flex;
}

.comment-edit-modal{
    width:min(100%,460px);
    background:#fff;
    color:#111827;
    border-radius:18px;
    padding:16px;
    box-shadow:0 24px 64px rgba(15,23,42,.22);
}

.comment-edit-modal h3{
    font-size:17px;
    margin:0 0 10px;
}

.comment-edit-textarea{
    width:100%;
    min-height:120px;
    resize:vertical;
    border:1px solid rgba(15,23,42,.12);
    border-radius:14px;
    padding:12px 14px;
    outline:0;
    font:inherit;
    background:#fff;
    color:#111827;
}

.comment-edit-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:12px;
}

.profile-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    padding:10px 12px;
    border-radius:18px;
    background:#f8fafc;
}

.profile-actions .btn,
.profile-actions a.btn,
.profile-action-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:98px;
    padding:9px 12px;
    margin:0;
    border-radius:14px;
    border:none !important;
    background:transparent !important;
    background-image:none !important;
    color:#111827 !important;
    box-shadow:none !important;
}

.profile-actions .btn::before,
.profile-actions a.btn::before,
.profile-action-btn::before{
    display:none !important;
    content:none !important;
}

.profile-action-icon{
    width:30px;
    height:30px;
    border-radius:10px;
    background:#f3f4f6 !important;
    color:#111827 !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
}

.profile-action-label{
    font-size:12px;
    font-weight:700;
    line-height:1.2;
}

body.theme-dark .comment-more-trigger,
body.theme-dark .comment-more-menu,
body.theme-dark .comment-more-item,
body.theme-dark .comment-edit-modal,
body.theme-dark .comment-edit-textarea,
body.theme-dark .profile-actions .btn,
body.theme-dark .profile-actions a.btn,
body.theme-dark .profile-action-btn{
    background:transparent !important;
    color:#111827 !important;
}

@media (max-width:560px){
    .profile-actions{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        width:100%;
    }

    .profile-actions .btn,
    .profile-actions a.btn,
    .profile-action-btn{
        width:100%;
        min-width:0;
        min-height:72px;
        flex-direction:column;
        gap:6px;
    }

    .profile-action-label{
        text-align:center;
    }
}

@media (min-width:561px){
    .profile-actions .btn,
    .profile-actions a.btn,
    .profile-action-btn{
        flex-direction:row;
    }
}
