.ssw-social-share {
  margin: 2rem 0;
}

.ssw-social-share-top {
  margin-bottom: 2rem;
}

.ssw-social-share-bottom {
  margin-top: 2rem;
}

.ssw-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.ssw-social-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: #f3f4f6;
  transition: background-color 0.2s, transform 0.2s;
}

.ssw-social-share-button:hover {
  background-color: #e5e7eb;
  transform: scale(1.1);
}

.ssw-social-share-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive styles */
@media (max-width: 640px) {
  .ssw-flex {
    gap: 0.25rem;
  }

  .ssw-social-share-button {
    padding: 0.375rem;
  }

  .ssw-social-share-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ssw-flex {
    gap: 0.375rem;
  }
}

@media (min-width: 1025px) {
  .ssw-flex {
    gap: 0.5rem;
  }
}

