.blog-share-buttons {
  display: flex;
  align-items: center;
}

.blog-share-buttons .share-btn {
  transition: all 0.2s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-share-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.blog-share-buttons [data-type="facebook"]:hover {
  background-color: #3b5998;
  border-color: #3b5998;
  color: white;
}

.blog-share-buttons [data-type="twitter"]:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

.blog-share-buttons [data-type="linkedin"]:hover {
  background-color: #0077b5;
  border-color: #0077b5;
  color: white;
}

.blog-share-buttons [data-type="whatsapp"]:hover {
  background-color: #25d366;
  border-color: #25d366;
  color: white;
}

.blog-share-buttons [data-type="copy"]:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}