.cafe-like-dislike-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 24px auto;
}

.cafe-like-button,
.cafe-dislike-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f3f5;
  color: #333;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cafe-like-button:hover,
.cafe-dislike-button:hover {
  background: #e9ecef;
}

.cafe-like-button.active {
  background: #00c471;
  color: #fff;
}

.cafe-dislike-button.active {
  background: #e03131;
  color: #fff;
}

.like-count, .dislike-count {
  font-size: 0.95rem;
}
