.oh-share-buttons {
  width: 100%;
}

.oh-share-buttons__list {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.oh-share-buttons__item {
  display: flex;
}

.oh-share-buttons__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 4px 0;
  position: relative;
}

.oh-share-buttons__button:focus-visible {
  outline: 2px solid #050022;
  outline-offset: 2px;
}

.oh-share-buttons__icon {
  display: inline-flex;
  width: 23px;
  height: 23px;
  justify-content: center;
  align-items: center;
}

.oh-share-buttons__icon svg,
.oh-share-buttons__icon svg * {
  width: 100%;
  height: 100%;
  display: block;
}

.oh-share-buttons__button:hover .oh-share-buttons__icon svg,
.oh-share-buttons__button:hover .oh-share-buttons__icon svg *,
.oh-share-buttons__button:focus-visible .oh-share-buttons__icon svg,
.oh-share-buttons__button:focus-visible .oh-share-buttons__icon svg * {
  /* fill: #050022;
  stroke: #050022; */
}

.oh-share-buttons__label {
  white-space: nowrap;
}

.oh-share-buttons__tooltip {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translate(-50%, -4px);
  background: #050022;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.oh-share-buttons__tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, -8px);
}
