.social-share-container {
    text-align: center;
    margin: 1rem auto;
    padding: 0.5rem;
  }
  
  .share-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0.3rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s, opacity 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  }
  
  .share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
  }
  
  .share-btn.facebook {
    background-color: #4267B2;
    background-image: url('https://simpleicons.org/icons/facebook.svg');
  }
  
  .share-btn.instagram {
    background-color: #E1306C;
    background-image: url('https://simpleicons.org/icons/instagram.svg');
  }
  
  .share-btn.tiktok {
    background-color: #69C9D0;
    background-image: url('https://simpleicons.org/icons/tiktok.svg');
  }
  
  .share-btn.x {
    background-color: #FFFFFF;
    background-image: url('https://simpleicons.org/icons/x.svg');
  }

  .share-btn.whatsapp {
    background-color: #25D366;
    background-image: url('https://simpleicons.org/icons/whatsapp.svg');
  }
  