/* notification.css */

/* Styles pour la notification */
#notification {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  #notification.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  /* Couleurs selon type */
  #notification.notif-success {
    background-color: #4CAF50; /* vert */
  }
  #notification.notif-error {
    background-color: #f44336; /* rouge */
  }
  