/* Phần tử share-count */
.share-count {
  font-size: 14px;
  color: #555;

  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.modern-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #323232; /* Nền tối hơn để nổi bật */
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 1001;
}

.modern-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.modern-notification .notification-icon {
  background-color: #4caf50; /* Màu xanh lá nổi bật */
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.share-count::after {
  content: "Appreciate";
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-size: 14px;
  z-index: 10;
}
