/* ============================================
   Styles pour le plugin Notification Avent
   ============================================ */

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Formulaire de notification */
#notification-form-container {
  animation: slideIn 0.3s ease;
}

#notification-form input[type="email"]:focus {
  outline: none;
  border-color: #667eea !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#notification-form button:hover {
  transform: scale(1.02);
}

#notification-form #notification-submit:hover {
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

#notification-form #notification-cancel:hover {
  background: #ccc !important;
}

/* Messages */
#notification-message {
  animation: slideIn 0.3s ease;
}

/* Responsive */
@media (max-width: 600px) {
  #notification-form {
    padding: 15px !important;
  }
  
  #notification-form h3 {
    font-size: 1em !important;
  }
  
  #notification-form button {
    padding: 10px !important;
    font-size: 0.9em !important;
  }
}