/* style.css - Design MobileMoney Pro inspiré de MyAirtelAfrica */
:root {
  /* Couleurs MyAirtelAfrica */
  --airtel-red: #E60000;
  --airtel-dark-red: #CC0000;
  --airtel-orange: #FF6B00;
  --airtel-blue: #0066CC;
  --airtel-dark: #1A1A1A;
  --airtel-gray: #666666;
  --airtel-light: #F8F9FA;
  --airtel-white: #FFFFFF;
  
  /* Gradients Airtel */
  --gradient-airtel: linear-gradient(135deg, var(--airtel-red) 0%, var(--airtel-orange) 100%);
  --gradient-airtel-dark: linear-gradient(135deg, var(--airtel-dark-red) 0%, #E55A00 100%);
  
  /* Espacements */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  
  /* Bordures */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--airtel-light);
  color: var(--airtel-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== LAYOUT PRINCIPAL ===== */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER & NAVBAR TOP ===== */
.navbar-top {
  background: var(--gradient-airtel);
  color: var(--airtel-white);
  padding: var(--space-md) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.quick-action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--airtel-dark);
    transition: all 0.3s ease;
    padding: var(--space-sm);
    border-radius: var(--radius);
}

.quick-action-link:hover {
    color: var(--airtel-red);
    transform: translateY(-2px);
}

.quick-action-link .action-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-airtel);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
}

.quick-action-link .action-icon i {
    color: var(--airtel-white);
    font-size: 1.5rem;
}

.quick-action-link:hover .action-icon {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quick-action-link .action-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Styles pour les boutons de la promo section */
.promo-actions .btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Personnalisation SweetAlert */
.swal2-popup {
    font-family: 'Poppins', sans-serif;
}

.swal2-confirm {
    background: var(--gradient-airtel) !important;
    border: none !important;
}

.swal2-cancel {
    background: var(--airtel-gray) !important;
    border: none !important;
}

/* Toast notifications position */
.swal2-container {
    z-index: 10000;
}


.navbar-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--airtel-white);
  text-decoration: none;
}

.brand-logo {
  width: 32px;
  height: 32px;
  background: var(--airtel-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo i {
  color: var(--airtel-red);
  font-size: 1.2rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.connection-status {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--airtel-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar i {
  color: var(--airtel-red);
  font-size: 1rem;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.user-role {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* ===== NAVBAR BOTTOM MOBILE ===== */
.navbar-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--airtel-white);
  border-top: 1px solid rgba(0,0,0,0.1);
  z-index: 1000;
  padding: var(--space-sm) 0;
  /* display: none; */
}

.navbar-bottom-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--airtel-gray);
  font-size: 0.7rem;
  padding: var(--space-sm);
  flex: 1;
  transition: all 0.3s ease;
  min-width: 0;
}

.nav-item i {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  transition: all 0.3s ease;
}

.nav-item.active {
  color: var(--airtel-red);
}

.nav-item.active i {
  transform: scale(1.1);
  color: var(--airtel-red);
}

.nav-item span {
  font-size: 0.65rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  margin-top: 80px; /* Hauteur navbar top */
  margin-bottom: 70px; /* Hauteur navbar bottom */
  padding: var(--space-md);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ===== QUICK ACTIONS - Style MyAirtel ===== */
.quick-actions {
  background: var(--airtel-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--airtel-dark);
  display: flex;
  align-items: center;
  justify-content: between;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--airtel-dark);
  transition: all 0.3s ease;
}

.action-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-airtel);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  transition: all 0.3s ease;
}

.action-icon i {
  color: var(--airtel-white);
  font-size: 1.5rem;
}

.quick-action:hover .action-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.action-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

/* ===== PROMOTION SECTION ===== */
.promo-section {
  background: var(--gradient-airtel);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--airtel-white);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.promo-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.promo-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.promo-actions {
  display: flex;
  gap: var(--space-md);
}

/* ===== CARTES MODERNES ===== */
.card {
  background: var(--airtel-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: none;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header {
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
}

.card-body {
  padding: var(--space-lg);
}

/* ===== STATISTIQUES ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stat-card {
  background: var(--gradient-airtel);
  color: var(--airtel-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.stat-icon {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  font-size: 2.5rem;
  opacity: 0.3;
}

/* ===== FORMULAIRES ===== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--airtel-dark);
}

.form-control {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid #e1e5e9;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--airtel-white);
}

.form-control:focus {
  border-color: var(--airtel-red);
  box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.25);
  outline: none;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gradient-airtel);
  color: var(--airtel-white);
}

.btn-primary:hover {
  background: var(--gradient-airtel-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--airtel-gray);
  color: var(--airtel-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--airtel-red);
  color: var(--airtel-red);
}

.btn-outline:hover {
  background: var(--airtel-red);
  color: var(--airtel-white);
}

/* ===== TABLES ===== */
.table-container {
  background: var(--airtel-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  background: var(--gradient-airtel);
  color: var(--airtel-white);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
}

.table td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.table tr:hover {
  background: rgba(230, 0, 0, 0.02);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablettes */
@media (max-width: 1024px) {
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .navbar-bottom {
    display: block;
  }
  
  .main-content {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: var(--space-md);
  }
  
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .navbar-actions .user-info {
    display: none;
  }
  
  .promo-actions {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1rem;
  }
}

/* Très petits mobiles */
@media (max-width: 480px) {
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .action-icon {
    width: 50px;
    height: 50px;
  }
  
  .action-icon i {
    font-size: 1.2rem;
  }
  
  .action-label {
    font-size: 0.7rem;
  }
  
  .nav-item span {
    font-size: 0.6rem;
  }
  
  .main-content {
    padding: var(--space-sm);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.4s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

/* ===== ÉTATS SPÉCIAUX ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Ajoutez dans style.css */
.btn-download-bordereau {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
}

.btn-download-bordereau:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
    color: white;
}

.btn-download-bordereau:active {
    transform: translateY(0);
}

.bordereau-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.bordereau-status.available {
    background: #d4edda;
    color: #155724;
}

.bordereau-status.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.bordereau-status.pending {
    background: #fff3cd;
    color: #856404;
}

/* Badge pour les opérations avec bordereau */
.has-bordereau {
    position: relative;
}

.has-bordereau::after {
    content: "📄";
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
}
/* Ajouter dans style.css */

/* styles.css ou dashboard.css */
.profile-avatar {
    position: relative;
}

.avatar-circle {
    transition: transform 0.3s ease;
}

.avatar-circle:hover {
    transform: scale(1.05);
}

.password-requirements li {
    transition: all 0.3s ease;
}

.password-requirements li small {
    font-size: 12px;
}

/* Animation pour les badges */
.badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive tables */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .col-md-6, .col-lg-4, .col-lg-8 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}


/* ===== UTILITAIRES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }



/* ===== FORMULAIRE PRO - STYLES AMÉLIORÉS ===== */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--airtel-dark);
  font-size: 0.9rem;
}

.input-group-pro {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid #e1e5e9;
  border-radius: var(--radius);
  background: var(--airtel-white);
  transition: all 0.3s ease;
  overflow: hidden;
}

.input-group-pro:hover {
  border-color: var(--airtel-blue);
}

.input-group-pro:focus-within {
  border-color: var(--airtel-red);
  box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.1);
  transform: translateY(-1px);
}

.input-icon {
  padding: 0 15px;
  color: var(--airtel-gray);
  font-size: 1rem;
  min-width: 50px;
  text-align: center;
  border-right: 1px solid #e1e5e9;
  background: var(--airtel-light);
  transition: color 0.3s ease;
}

.input-group-pro:focus-within .input-icon {
  color: var(--airtel-red);
  background: rgba(230, 0, 0, 0.05);
}

.input-field {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 1rem;
  background: transparent;
  color: var(--airtel-dark);
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.input-field::placeholder {
  color: #9aa6b2;
  opacity: 0.7;
}

/* Bouton show/hide password */
.password-toggle-btn {
  background: transparent;
  border: none;
  padding: 0 15px;
  color: var(--airtel-gray);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle-btn:hover {
  color: var(--airtel-red);
}

.password-toggle-btn:focus {
  outline: none;
}

.password-toggle-btn .fa-eye-slash {
  color: var(--airtel-red);
}

/* Validation states */
.input-group-pro.valid {
  border-color: #28a745;
}

.input-group-pro.valid:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.input-group-pro.error {
  border-color: #dc3545;
  animation: shake 0.5s ease-in-out;
}

.input-group-pro.error:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.validation-message {
  font-size: 0.8rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.validation-message.success {
  color: #28a745;
}

.validation-message.error {
  color: #dc3545;
}

.validation-message i {
  font-size: 0.9rem;
}

/* Animation shake pour les erreurs */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Floating labels option */
.floating-label-group {
  position: relative;
  margin-bottom: 2rem;
}

.floating-label {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1rem;
  color: var(--airtel-gray);
  pointer-events: none;
  transition: all 0.3s ease;
  background: var(--airtel-white);
  padding: 0 5px;
  transform-origin: left center;
}

.floating-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: var(--radius);
  font-size: 1rem;
  background: transparent;
  color: var(--airtel-dark);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.floating-input:focus {
  border-color: var(--airtel-red);
  box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.1);
  outline: none;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--airtel-red);
  background: var(--airtel-white);
  padding: 0 8px;
  transform: scale(0.9);
}

/* Progress bar pour la force du mot de passe */
.password-strength-meter {
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-text {
  font-size: 0.75rem;
  margin-top: 3px;
  text-align: right;
}

.strength-0 { background: #dc3545; width: 20%; } /* Très faible */
.strength-1 { background: #fd7e14; width: 40%; } /* Faible */
.strength-2 { background: #ffc107; width: 60%; } /* Moyen */
.strength-3 { background: #28a745; width: 80%; } /* Fort */
.strength-4 { background: #20c997; width: 100%; } /* Très fort */

/* Responsive design pour les formulaires */
@media (max-width: 768px) {
  .input-group-pro {
    flex-wrap: wrap;
  }
  
  .input-icon {
    min-width: 40px;
    padding: 0 10px;
  }
  
  .password-toggle-btn {
    min-width: 40px;
  }
  
  .input-field {
    padding: 12px;
  }
  
  .floating-input {
    padding: 12px;
  }
}

/* Effet de focus personnalisé */
.input-field:focus ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--airtel-red);
  transition: all 0.3s ease;
}

.input-field:focus ~ .focus-border {
  width: 100%;
  left: 0;
}

/* Checkbox personnalisé pour "Remember me" */
.form-check-input-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.form-check-input-custom:checked {
  background: var(--airtel-red);
  border-color: var(--airtel-red);
}

.form-check-input-custom:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--airtel-gray);
  cursor: pointer;
}



/* Styles améliorés pour les notifications */
.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.notification-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid;
    animation: slideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.notification-card.success {
    border-left-color: #06D6A0;
    background: linear-gradient(135deg, #f0fff8 0%, #e6fcf5 100%);
}

.notification-card.error {
    border-left-color: #EF476F;
    background: linear-gradient(135deg, #fff5f7 0%, #ffeef2 100%);
}

.notification-card.info {
    border-left-color: #118AB2;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.notification-card.warning {
    border-left-color: #FFD166;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5e6 100%);
}

.notification-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notification-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.notification-content {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.5;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.notification-close:hover {
    color: #e74c3c;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    animation: progressBar 5s linear forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Styles pour les alertes dans le contenu */
.alert-enhanced {
    border-radius: 15px;
    border: none;
    border-left: 5px solid;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.alert-enhanced.alert-success {
    border-left-color: #06D6A0;
    background: linear-gradient(135deg, #06D6A0 0%, #0ACF83 100%);
    color: white;
}

.alert-enhanced.alert-danger {
    border-left-color: #EF476F;
    background: linear-gradient(135deg, #EF476F 0%, #F03D6A 100%);
    color: white;
}

.alert-enhanced .alert-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    animation: pulse 2s infinite;
}

.alert-enhanced .alert-content h6 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.alert-enhanced .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.alert-enhanced .btn-close:hover {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Styles pour les modaux */
.modal-enhanced .modal-header {
    background: linear-gradient(135deg, var(--airtel-red) 0%, var(--airtel-orange) 100%);
    color: white;
    border-bottom: none;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
}

.modal-enhanced .modal-header .modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-enhanced .modal-body {
    padding: 30px;
    background: #f8f9fa;
}

.modal-enhanced .modal-footer {
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 20px 30px;
    border-radius: 0 0 15px 15px;
}

.modal-enhanced .form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.modal-enhanced .form-control:focus {
    border-color: var(--airtel-red);
    box-shadow: 0 0 0 0.3rem rgba(230, 0, 0, 0.15);
}

.modal-enhanced .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-enhanced .btn-primary {
    background: linear-gradient(135deg, var(--airtel-red) 0%, var(--airtel-orange) 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.modal-enhanced .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}

.modal-enhanced .btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.modal-enhanced .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.modal-enhanced .alert-info {
    background: linear-gradient(135deg, #e7f3ff 0%, #d9ebff 100%);
    border: 1px solid #b3d7ff;
    border-left: 5px solid #118AB2;
    color: #004085;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}