/*
Theme Name: Gédéon
Theme URI: https://gedeon.maki-group.mg/
Author: VONA
Description: Mon premier thème WordPress
Version: 1.0
*/
/* ✅ Toast notification */
.toast-message {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}

.toast-message.show {
  visibility: visible;
  opacity: 1;
}


