.pmst-reactions-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  /*color: #ccc;*/
  position: relative;
}

.reaction-button {
  position: relative;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reaction-button .like-btn {
  background: transparent;
  border: none;
  color: #FE5252;
  font-size: 14px;
  cursor: pointer;
}

.reaction-options {
  display: none;
  position: absolute;
  bottom: 100%;         /* Place it above the like button */
  left: 0;
  margin-bottom: 8px;   /* Space between popup and button */
  background: #1c1c1c;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 8px 10px;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  white-space: nowrap;
}


.reaction-option {
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.reaction-option:hover .emoji {
  transform: scale(1.4);
}

.emoji {
  font-size: 24px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.zoom-animate {
  animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.6); }
  100% { transform: scale(1); }
}

.reaction-summary {
  margin-left: 15px;
  font-size: 14px;
  color: #aaa;
}

.reaction-comment-link {
  /*color: #FE5252;*/
  text-decoration: none;
  margin-left: 15px;
}

.reaction-comment-link:hover {
  color: #FE5252;
  /*text-decoration: none;*/
}

/* Add divider */
.reaction-divider {
  color: #888;
  margin: 0 10px;
}
.pmst-login-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pmst-login-popup {
  background: #f8d7da;
  padding: 25px 30px;
  border-radius: 8px;
  color: #721c24;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pmst-login-popup a {
  color: #004085;
  font-weight: bold;
  text-decoration: underline;
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  font-weight: bold;
  color: #721c24;
  cursor: pointer;
}
/* Add to assets/reactions.css */
.zoom-animate {
  animation: zoomPop 0.3s ease;
}

@keyframes zoomPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}

