.share-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.social-share-title{
  margin: 0 0 10px;
  color: #666;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.share-wrapper {
  text-align: center;
  width: 100%;
  margin: 30px 0 40px;
}

.share-label {
  display: none;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;  /* Changed from 20px */
  text-decoration: none;
  font-size: 32px;
  transition: all 0.3s ease;
  color: #2c2c2c;
  background: #f5ebe0;
  border: 1px solid #000000;
}

.social-icon img {
  width: 16px;  /* Adjust icon size to fit the smaller button */
  height: 16px;
  display: block;
  filter: brightness(0);
}

.social-icon:hover {
  background-color: #f5ebe0;
}

.copy-link.copied {
  background-color: #7fe2b0;
  border-color: #7fe2b0;
}

.copy-link.copied img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .share-container {
    padding: 0;
    gap: 12px;
  }
  
  .share-label {
    display: none;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .social-icon img {
    width: 16px;
    height: 16px;
  }
  
  .social-icons {
    gap: 12px;
    padding-left: 0;
  }
}