/*
* Prophetic Ilm Theme - Share Button
*/

#share-button,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.7rem 1.4rem;
  margin-top: 1.5rem;
  background: transparent;
  color: #9a9488;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

#share-button:hover,
.share-button:hover {
  color: #c9a84c;
  border-color: #a8892e;
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-1px);
}

#share-button svg,
.share-button svg,
#share-button img,
.share-button img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

#share-button:hover svg,
.share-button:hover svg,
#share-button:hover img,
.share-button:hover img {
  opacity: 1;
}
