.simple-social-share-wrapper {
  padding: 1rem;
  margin: 1rem 0;
}

.social-share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
}

.social-share-button:hover {
  transform: scale(1.1);
}

.social-share-button svg {
  width: 24px;
  height: 24px;
}

/* Platform-specific colors */
.facebook {
  background-color: #1877f2;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0a66c2;
}

.whatsapp {
  background-color: #25d366;
}

.telegram {
  background-color: #0088cc;
}

.pinterest {
  background-color: #e60023;
}

.reddit {
  background-color: #ff4500;
}

.tumblr {
  background-color: #35465c;
}

.email {
  background-color: #ea4335;
}

.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.copy-link {
  background-color: #6b7280;
}

.copy-link.copied {
  background-color: #10b981;
}
