.reaction-widget {
  font-family: inherit;
  margin: 40px auto;
  text-align: center;
}

.reaction-widget button {
  padding: 8px 16px;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #f1f1f1;
  margin-right: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.reaction-widget button:hover {
  background-color: #e0e0e0;
}

.reaction-widget .like.active {
  background-color: #4CAF50;
  color: white;
}

.reaction-widget .dislike.active {
  background-color: #f44336;
  color: white;
}

.reaction-widget .message {
  margin-top: 10px;
  color: green;
  display: none;
  font-size: 14px;
}