  .sharing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 2px solid var(--primary-color, #b23333);
    cursor: pointer;
    outline: none;
    font-size: 16px;
    padding: 4px 16px;
    border-radius: 8px;
    color: var(--primary-color, #b23333);
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .sharing-button:hover {
    background: var(--primary-color, #b23333);
    color: #fff;
  }
  .sharing-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
