/* css/reactions.css */
.reactions-widget {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.reactions-actions hr {
    background-color: #eee;
    height: 1px;
    border-style: none;
    margin: 15px 0 10px;
}

.reactions-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reaction-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 20px;
}

.reaction-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reaction-button {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.2s;
}

.reaction-button:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.user-reaction {
  display: flex;
  align-items: center;
  gap: 10px;

}
