<style>
  .custom-wa-buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .custom-wa-buttons-box {
    width: 360px;
    max-width: 100%;
    display: flex;
    gap: 16px;
  }

  .custom-wa-button-link,
  .custom-wa-button-link:link,
  .custom-wa-button-link:visited,
  .custom-wa-button-link:hover,
  .custom-wa-button-link:active,
  .custom-wa-button-link:focus {
    flex: 1;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none !important;
    color: #ffffff !important;

    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.1;
    text-align: center;
    box-sizing: border-box;
    padding: 6px 8px;
    transition: all 0.3s ease;
  }

  .custom-wa-button-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .custom-wa-blue-bg {
    background-color: #007BFF;
  }

  .custom-wa-green-bg {
    background-color: #25D366;
  }

  .custom-wa-text-stack {
    display: block;
    line-height: 1.1;
  }

  .custom-wa-nowrap {
    white-space: nowrap;
  }

  .custom-wa-small-text {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-top: 2px;
    line-height: 1.1;
  }

  @media (max-width: 600px) and (orientation: portrait) {
    .custom-wa-buttons-box {
      width: 50vw;
      gap: 8px;
    }

    .custom-wa-button-link {
      min-height: 40px;
      font-size: 14px;
      padding: 5px 4px;
      border-radius: 8px;
    }

    .custom-wa-small-text {
      font-size: 11px;
    }
  }
</style>
