/* Social Sharing Styles */

.share-container {
  margin: 30px 0;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
}

.share-title {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #263238;
  margin: 0 0 15px 0;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.share-button:active {
  transform: translateY(0);
}

.share-button.twitter {
  background: #1DA1F2;
}

.share-button.linkedin {
  background: #0A66C2;
}

.share-button.copy-link {
  background: #263238;
}

.share-button.print {
  background: #666;
}

.share-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Copy confirmation */
.copy-confirmation {
  display: none;
  margin-top: 10px;
  padding: 8px 16px;
  background: #4caf50;
  color: white;
  border-radius: 4px;
  font-size: 13px;
  animation: fadeInOut 2s ease-in-out;
}

.copy-confirmation.show {
  display: inline-block;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  10%, 90% { opacity: 1; }
}

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {
  .share-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .share-button {
    justify-content: center;
    width: 100%;
  }
}

/* Print styles - hide share buttons when printing */
@media print {
  .share-container {
    display: none;
  }
  
  .progress-container {
    display: none;
  }
  
  header {
    position: relative;
    page-break-after: avoid;
  }
  
  .section-container {
    page-break-inside: avoid;
  }
}
