/* =======================================================================
   File: components/alerts.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Boîtes d'alerte (info/warning/success).                                                  
   Notes: 
   - Code organisé par modules pour un projet plus professionnel.
   - Commentaires présents en tête de fichier et avant chaque bloc.
   - Les couleurs et styles initiaux sont conservés via des variables.
   ======================================================================= */
.alert-box {
  padding: 20px;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  animation: slideInRight 0.6s ease-out;
}
.alert-box::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: sweepRight 3s infinite;
}
.alert-info    { background: rgba(78, 205, 196, 0.1); border: 1px solid var(--aperture-blue); }
.alert-warning { background: rgba(255, 107, 53, 0.1); border: 1px solid var(--aperture-orange); }
.alert-success { background: rgba(0, 255, 0, 0.1);   border: 1px solid var(--aperture-success); }
.alert-icon { font-size: 1.5em; animation: iconPulse 2s ease-in-out infinite; }
/* ===== End of components/alerts.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
