
 /* Style pour le bouton Tipeee principal */
 .tipeee-container {
    margin:10px 0;
  text-align: center;
}

.tipeee-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, #FF5252, #FF1744);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.tipeee-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 82, 82, 0.6);
}

.tipeee-button:active {
  transform: translateY(1px);
}

.tipeee-button i {
  margin-right: 10px;
  font-size: 20px;
}

.tipeee-text {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

.social-share-container {
    display: block;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    max-width: 90%;
    width: 100%;
}

.share-text {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-right: 15px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.social-buttons {
  display: flex;
  gap: 10px;
}

.social-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0077b5;
}

.email {
  background-color: #ea4335;
}

.link {
  background-color: #718096;
}

/* Message de confirmation pour le copier-coller */
.copy-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-message.show {
  opacity: 1;
}