[data-element="appButtons"] .wtps-appButtons-container {
  display: flex;
  flex-direction: var(--appbuttonsdirection, row);
  flex-wrap: wrap;
  gap: var(--appbuttonsgap, 12px);
  justify-content: var(--appbuttonsjustify, center);
  align-items: var(--appbuttonsalign, center);
}

[data-element="appButtons"] .wtps-appButtons-btn {
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

[data-element="appButtons"] .wtps-appButtons-btn:hover {
  opacity: 0.85;
}

[data-element="appButtons"] .wtps-appButtons-img {
  display: block;
  height: var(--appbuttonsheight, 48px);
  width: auto;
  object-fit: contain;
}
