.comment-reactions {
    margin: 10px 0;
    display: flex;
    gap: 10px;
}

.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reaction-btn:hover {
    background: #e9e9e9;
}

.reaction-btn.active {
    background: #e0e0e0;
    border-color: #bbb;
}

.reaction-count {
    font-weight: bold;
}
