.share-wrapper {
  position: relative;
}

.share-dropdown {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  top: 40px;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 8px 10px;
  z-index: 20;
  overflow: hidden;
  width: max-content;
}

.share-dropdown a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s ease background-color 0.2s ease;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
  padding: 3px 3px 6px;
}

.share-dropdown a:last-of-type {
  border: none;
  padding: 3px;
}

.sharing-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 6px;
  padding: 0;
}

.share-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: #334155; /* slate-700 */
  margin: 8px 0 6px;
  padding: 0;
}

.share-it-label {
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

.share-span {
  font-weight: 600;
  font-size: 15px;
  font-style: italic;
}

.sharing-links.bottom {
    justify-content: flex-end;
    margin: 0;
}

.sharing-links a,
.sharing-links button {
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.sharing-links a:hover,
.sharing-links button:hover {
    transform: scale(1.1);
}

.share-dropdown a:hover {
    transform: scale(1.03);
    background-color: #dfe4ea;
}

.copy-svg-check-wrapper {
  width: 24px;
  height: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-link {
    padding: 4px 8px; 
    background: none; 
    border: none; 
    cursor: pointer;
}

.copy-checkmark {
  display: block;
  stroke: #2e7d32;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-small-check {
  display: block;
  width: 36px;
  height: 36px;
}

.copy-check-path {
  stroke: #2e7d32;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: copy-draw-check 0.75s ease-out forwards;
  will-change: stroke-dashoffset;
  backface-visibility: hidden;
}

@keyframes copy-draw-check {
  to {
    stroke-dashoffset: 0;
  }
}