
.dss-share-ui {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: sans-serif;
}

.dss-share-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 12px;
    margin-top: 10px;
}

.dss-share-count {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}

.dss-share-label {
  font-size: 12px;
  color: #777;
}

.dss-share-icons {
  display: flex;
  gap: 12px;
}

.dss-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.2s ease;
}

.dss-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.dss-icon:hover {
  background-color: #333;
}

.dss-icon.copy {
  border: none;
  background-color: #000;
}
.dss-icon.copy {
  position: relative;
  border: none;
  background-color: #000;
}

.dss-icon.copy .copied-msg {
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #000;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.dss-icon.copy .copied-msg.visible {
  opacity: 1;
}
