/* form */
.ct-widget { font-family: inherit; max-width: 800px; margin: 10px 0; box-sizing: border-box; }
.ct-widget .ct-form { display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }
.ct-widget .ct-form input, .ct-widget .ct-form textarea { padding:8px; border:1px solid #ddd; border-radius:4px; font-size:14px; box-sizing:border-box; }
.ct-widget .ct-form .ct-name { max-width: 300px; }
.ct-widget .ct-form .ct-submit { padding:8px 12px; border:1px solid #ccc; border-radius:6px; cursor:pointer; background:transparent; }

/* comments */
.ct-widget .ct-comments-list { display:flex; flex-direction:column; gap:10px; }
.ct-widget .ct-comment { display:flex; gap:10px; padding:8px; border:1px solid #eee; border-radius:6px; background:#fff; }
.ct-widget .ct-avatar img { width:40px !important; height:40px !important; border-radius:50%; object-fit:cover; }
.ct-widget .ct-body { flex:1; }

/* meta */
.ct-widget .ct-author { font-size:14px !important; font-weight:700 !important; color:#FFD700 !important; display:block; }
.ct-widget .ct-content { font-size:14px; margin-bottom:6px; line-height:1.4; }
.ct-widget .ct-date { font-size:11px !important; color:#666 !important; margin-top:4px; display:block; }

/* replies */
.ct-widget .ct-replies .ct-reply { display:flex; gap:8px; margin-top:8px; padding-left:44px; }
.ct-widget .ct-replies .ct-avatar img { width:30px !important; height:30px !important; }

/* reply button */
.ct-widget .ct-reply-btn { font-size:12px; padding:4px 8px; border-radius:4px; border:1px solid #ccc; background:transparent; cursor:pointer; }

/* temp reply form */
.ct-widget .ct-temp-reply { margin-top:8px; }
.ct-widget .ct-temp-reply .ct-name { width:100%; padding:6px; margin-bottom:6px; box-sizing:border-box; }
.ct-widget .ct-temp-reply .ct-content { width:100%; min-height:60px; padding:6px; box-sizing:border-box; }
.ct-widget .ct-temp-reply .ct-submit { margin-top:6px; border:1px solid #ccc; padding:6px 10px; border-radius:4px; cursor:pointer; }

/* pagination kecil */
.ct-widget .ct-pagination { margin-top:8px; text-align:center; }
.ct-widget .ct-pagination .ct-page-btn {
    font-size:11px;
    margin:0 2px;
    padding:2px 6px;
    border:1px solid #ccc;
    border-radius:3px;
    background:#fff;
    cursor:pointer;
}
.ct-widget .ct-pagination .ct-page-btn[disabled] {
    background:#eee;
    color:#999;
    cursor:default;
}
