/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 06 2025 | 20:20:34 */
<style>
.compte-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bouton-mon-compte, .bouton-logout {
  display: inline-flex;
  align-items: center;
  background-color: #0073e6;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.bouton-logout {
  background-color: #e63946;
}

.bouton-mon-compte i, .bouton-logout i {
  margin-right: 6px;
}

.bouton-mon-compte:hover {
  background-color: #005bb5;
}

.bouton-logout:hover {
  background-color: #c82333;
}
</style>