.reaction-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.reaction-btn {
  background-color: #af0606;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.reaction-btn:hover {
  background-color: #c10a0a;
}

.reaction-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.reaction-count {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
