/* ============================================
   SOCIAL SHARING (Week 3, Day 1-2)
   - Share buttons (Web Share API + fallbacks)
   - Save for later
   - Print / Save as PDF
   - Email to colleague
   ============================================ */

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(12, 38, 75, 0.06);
}

.share-actions.is-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.share-actions .share-title {
  font-weight: 700;
  font-size: 13px;
  color: #0b2540;
}
.share-actions.is-dark .share-title {
  color: #e2e8f0;
}

.share-actions .share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0b2540;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border 0.15s ease;
}
.share-actions.is-dark .share-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.18);
}
.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(12, 38, 75, 0.12);
}
.share-actions.is-dark .share-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.share-btn.primary {
  border-color: transparent;
  background: linear-gradient(90deg, #0a5cff, #05c3ff);
  color: #ffffff;
}

.share-status {
  font-size: 12px;
  color: #64748b;
}
.share-actions.is-dark .share-status {
  color: rgba(255, 255, 255, 0.75);
}

.share-status[aria-live] {
  min-height: 16px;
}








