.reactions-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    justify-content: center;
}

.reaction-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reaction-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.reaction-button.active {
    background: #e3f2fd;
    color: #1565c0;
}

.reaction-button.like.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.reaction-button.dislike.active {
    background: #ffebee;
    color: #c62828;
}

.reaction-score {
    font-size: 18px;
    font-weight: bold;
    color: #1565c0;
    padding: 8px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reaction-score.positive {
    color: #2e7d32;
}

.reaction-score.negative {
    color: #c62828;
}