


.feedback-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px 20px;
}


.reaction-box {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.react-flex {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.react-item {
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    border: 1px solid #222;
    transition:
        background 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.react-item span {
    font-weight: 600;
}

.react-item:hover {
    background: #1b1b1b;
    transform: translateY(-2px);
}

.react-item.active-upvote {
    background: #ffcc00;
    border-color: #ffe680;
    box-shadow: 0 0 12px rgba(255, 220, 0, 0.5);
    color: #4a3800;
    transform: translateY(-2px) scale(1.05);
}

.react-item.active-suki {
    background: #ff4d4d;
    border-color: #ff9999;
    box-shadow: 0 0 14px rgba(255, 60, 60, 0.5);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
}

.react-item.active-apsih {
    background: #3da9ff;
    border-color: #8ccfff;
    box-shadow: 0 0 14px rgba(60, 170, 255, 0.4);
    color: #062033;
    transform: translateY(-2px) scale(1.05);
}


.comment-box {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #1c1c1c;
    margin-top: 10px;
}

.comment-text {
    width: 100%;
    background: #222;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #333;
}

.comment-btn {
    background: #6c63ff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    color: #fff;
    font-weight: 600;
}

#commentList {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-item {
    background: #181818;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    display: block; 
}

.comment-header,
.c-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 4px;
}

.comment-header strong {
    color: #f5f5f5;
}

.c-head strong {
    color: #f5f5f5;
    font-size: 13px;
}

.comment-time {
    color: #777;
    font-size: 11px;
}

.c-time {
    color: #777;
    font-size: 12px;
}

.comment-body,
.comment-message,
.c-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #e6e6e6;
}

.comment-actions,
.c-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 4px;
}

.comment-reply-btn,
.comment-delete-btn,
.comment-action-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.comment-reply-btn:hover,
.comment-delete-btn:hover,
.comment-action-btn:hover {
    color: #fff;
}

.comment-delete-btn {
    color: #ff7b7b;
}

.comment-delete-btn:hover {
    color: #ff9b9b;
}

.comment-reply-box,
.reply-box {
    margin-top: 6px;
}

.comment-reply-box textarea,
.reply-box textarea {
    width: 100%;
    background: #222;
    border: 1px solid #333;
    padding: 8px;
    border-radius: 6px;
    color: #fff;
}

.comment-reply-box button,
.reply-box button {
    margin-top: 6px;
    padding: 6px 12px;
    background: #6c63ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.c-actions button {
    font-weight: 600;
}

.comment-indent {
    margin-left: 22px;
    border-left: 2px solid #222;
    padding-left: 12px;
    margin-top: 6px;
}
