:root {
  --primary-purple: #4a154b; /* Deep purple text */
  --bg-lavender: #e8dae8; /* Light lavender circle */
  --icon-color: #4a154b; /* Icon color */
}

.share-container {
  display: flex;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  gap: 15px;
  margin: 12px;
}

.share-label {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 1vw;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--bg-lavender);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon i {
  color: var(--icon-color);
  font-size: 20px;
}

/* Hover effect */
.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Remove all button default styles for social icons */
button.social-icon {
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  background-color: var(--bg-lavender);
}

button.social-icon:focus,
button.social-icon:active {
  outline: none;
  border: none;
  box-shadow: none;
}
/* Mobile Layout Fix */
@media (max-width: 768px) {
  .share-container {
    display: flex;
    align-items: center;
    gap: 10px;
	margin: 20px 0px 20px 19px;
  }

  .share-label {
    flex-shrink: 0; /* Prevents the label from shrinking */
    white-space: nowrap; /* Prevents text wrapping */
  }

  .social-links {
    display: flex;
    gap: 10px;
    flex-shrink: 0; /* Prevents icons from squishing */
  }

  .share-icons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap; /* Prevents icons from wrapping */
  }

  .social-icon i {
    font-size: 18px;
  }
}
