/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 23 2025 | 02:10:32 */
.reaction-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0; }
  .reaction-buttons .reaction-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem; }
    .reaction-buttons .reaction-btn:hover {
      background: #fff;
      border-color: #333;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
    .reaction-buttons .reaction-btn.processing {
      opacity: 0.6;
      cursor: not-allowed; }
    .reaction-buttons .reaction-btn.active {
      background: #fff;
      border-color: #333; }
      .reaction-buttons .reaction-btn.active[data-type="thumbs_up"] {
        border-color: #4caf50;
        background: #e8f5e9; }
        .reaction-buttons .reaction-btn.active[data-type="thumbs_up"] i {
          color: #4caf50; }
      .reaction-buttons .reaction-btn.active[data-type="heart"] {
        border-color: #e91e63;
        background: #fce4ec; }
        .reaction-buttons .reaction-btn.active[data-type="heart"] i {
          color: #e91e63; }
    .reaction-buttons .reaction-btn.reacted {
      animation: bounce 0.3s ease; }
    .reaction-buttons .reaction-btn i {
      font-size: 1.25rem;
      color: #666;
      transition: color 0.3s ease; }
    .reaction-buttons .reaction-btn:hover i {
      color: #333; }
    .reaction-buttons .reaction-btn[data-type="thumbs_up"]:hover i {
      color: #4caf50; }
    .reaction-buttons .reaction-btn[data-type="heart"]:hover i {
      color: #e91e63; }
    .reaction-buttons .reaction-btn .reaction-count {
      font-weight: 600;
      color: #333;
      min-width: 20px;
      text-align: center; }

@keyframes bounce {
  0%, 100% {
    transform: scale(1); }

  50% {
    transform: scale(1.2); } }

@media (max-width: 768px) {
  .reaction-buttons {
    gap: 0.75rem; }
    .reaction-buttons .reaction-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem; }
      .reaction-buttons .reaction-btn i {
        font-size: 1.1rem; } }
