.share-buttons .share-button {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    background-color: #888;
  }

  .share-buttons .share-button:last-child{
    margin-bottom: 0;
  }

  .share-buttons .share-button.facebook {
    background-color: #4267B2;
  }
  .share-buttons .share-button.twitter {
    background-color: #1DA1F2;
  }
  .share-buttons .share-button.linkedin {
    background-color: #0077b5;
  }
  .share-buttons .share-button.messenger {
    background-color: #00B2FF;
  }
  .share-buttons .share-button.whatsapp {
    background-color: #25D366;
  }
  
  .share-button svg {
    width: 24px;
    height: 24px;
    max-width: none;
  }

  .share-button svg path {
    fill: #fff !important;
  }
  
  .share-popup {
    position: absolute;
    display: none;
    z-index: 999;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.2);
  }
  
  .share-buttons {
    display: flex;
    flex-direction: column;
  }
  
  @media screen and (max-width: 480px) {
    .share-buttons {
      flex-direction: row;
      flex-wrap: wrap;
    }
  
    .share-button {
      width: 50%;
      padding: 5px;
      margin-bottom: 5px;
    }
  }
  