/* Container full width */
#smc_comment_section {
    width: 100%;
    background: #0A0F14;
    color: #fff;
    padding: 12px;
    box-sizing: border-box;
}

/* Form box */
.smc-form-box {
    width: 100%;
    background: #11161c;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
}

/* Inputs */
#smc_comment_content {
    width: 100%;
    min-height: 90px;
    background: #1a1f26;
    color: #fff;
    border: 1px solid #2c343d;
    border-radius: 10px;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 10px;
    resize: vertical;
}
#smc_comment_author {
    width: 100%;
    background: #1a1f26;
    color: #fff;
    border: 1px solid #2c343d;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* Submit */
#smc_submit_btn {
    width: 100%;
    background: #d08c57;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
#smc_submit_btn:hover { opacity: 0.95; }

/* Note */
.smc-note { color: #9aa1a8; font-size: 12px; margin-top: 8px; }

/* Comment list */
#smc_comment_list { margin: 0; padding: 0; list-style: none; }

/* Comment block */
.smc-comment {
    display: flex;
    align-items: flex-start;
    background: #11161c;
    border: 1px solid #2c343d;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Avatar */
.smc-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Content */
.smc-comment-content { flex: 1; }
.smc-comment-header { display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.smc-comment-header strong { font-size: 15px; color: #fff; }
.smc-date { font-size: 12px; color: #8c9198; }

/* Text */
.smc-comment-text { color: #e6e9eb; margin-bottom:8px; }

/* Actions */
.smc-comment-actions { display:flex; align-items:center; gap:8px; }
.smc-reply-link {
    background: #1a1f26;
    border: 1px solid #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}
.smc-reply-link:hover { opacity: 0.95; }

/* View replies button: white arrow as requested */
.smc-view-replies {
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    margin-left: 6px;
    display: inline-block;
}
.smc-view-replies.open { font-weight:600; }

/* Replies UL */
ul.smc-replies { list-style:none; margin:8px 0 0 0; padding-left:40px; display:none; }

/* Child comment smaller avatar */
ul.smc-replies .smc-comment-avatar { width:30px; height:30px; font-size:14px; line-height:30px; }

/* Load more */
#smc_load_more_btn {
    background:#222;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:8px;
    cursor:pointer;
}
#smc_load_more_btn:hover { background:#333; }
