
.white-button {
  text-decoration: none;
  padding: 10px 10px;
  outline-offset: 0;
  outline: 1px solid #1F5C55;
  background-color: #fafdff;
  color: #1F5C55;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  font-family: 'roboto', sans-serif;
  z-index: 102;
}

.white-button:hover {
  background-color: #5836a5;
  font-weight: bold;
  color: #fafdff;
}

.purple-button {
  text-decoration: none;
  padding: 10px 10px;
  border: none;
  background-color: #5836a5;
  color: #fafdff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  font-family: 'roboto', sans-serif;
  z-index: 102;
}

.purple-button:hover {
  background-color: #fafdff;
  color: #1F5C55;
  outline-offset: 0;
  outline: 1px solid #1F5C55
}

#fat-button {
  text-decoration: none;
  padding: 20px 30px; /* Plus grand padding pour augmenter la taille */
  border: none;
  background-color: #5836a5;
  color: #fafdff;
  border-radius: 50px; /* Arrondi total pour un bouton ovale */
  cursor: pointer;
  font-size: 18px; /* Texte légèrement plus grand */
  font-weight: bold;
  font-family: 'roboto', sans-serif;
  z-index: 102;
}

.submit-button {
  width: 50%;
  padding: 12px;
  font-size: 16px;
  background-color: #6b47b8;
  border: 2px solid #6b47b8;
  color: white;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.submit-button:hover {
  background-color: #F2F3F4;
  color: #1F5C55;
  border: 2px solid #1F5C55;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  font-weight: bold;
}

.edit-button {
  display: block;
  width: 100%;
  background-color: #007BFF;
  color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
}

.edit-button:hover {
  background-color: #0056b3;
  font-weight: bold;
}