/* Container */
.lesics-sharebox {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* Base Outline Button */
.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #24a148;
  border-radius: 6px;
  background: transparent;
  color: #24a148;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s ease;
}

/* Copy link button (wide) */
.ls-copy {
  display: inline-flex;
}

.ls-copy .ls-icon {
  font-size: 17px;
  margin-right: 4px;
}

/* Social buttons (square) */
.ls-social {
  width: 40px;
  height: 40px;
  padding: 0;
}

.ls-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Hover Effects */
.ls-btn:hover,
.ls-btn:focus {
  transform: translateY(-2px);
}

/* Copied State */
.ls-copy.copied {
  background: #24a148 !important;
  color: #fff !important;
}

.ls-copy.copied .ls-icon {
  color: #fff !important;
}

/* Small screens */
@media (max-width: 480px) {
  .lesics-sharebox {
    flex-wrap: wrap;
    gap: 8px;
  }
}
