/* Shared share button styles */
.share-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #6c4eff;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.share-toggle:hover {
  background: #5a3fd1;
}

.share-menu {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 10px;
  display: none;
  z-index: 1001;
  min-width: 200px;
}

.share-menu.show {
  display: block;
}

.share-option {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  margin: 2px 0;
  transition: background 0.2s;
}

.share-option:hover {
  background: #f0f0f0;
}

.share-option i {
  margin-right: 8px;
}