
  .share-button-wrapper {
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
  }

  .share-button {
    font-size: 13px;
    font-weight: 500;
    color: #a1a1a1;
    background-color: transparent;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .share-button:hover {
    background-color: #f1f1f1;
  }

  .share-button img {
    width: 16px;
    height: 16px;
  }

  .copy-popup {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1b1b1b;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    white-space: nowrap;
    text-align: center;
    line-height: 1.4;
  }

  .copy-popup.show {
    opacity: 1;
  }
