body {
    
}
/* Container */
.custom-progress {
    width: 100%;
    height: 25px;
    background-color: #e9ecef; /* gris clair */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
  }
  
  /* Bar (style commun) */
  .custom-progress-bar {
    height: 100%;
    line-height: 25px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    transition: width 0.6s ease; /* animation fluide */
  }
  
  /* Variantes couleurs */
  .custom-progress-bar-success {
    background: linear-gradient(90deg, #198754, #157347); /* vert */
  }
  
  .custom-progress-bar-info {
    background: linear-gradient(90deg, #0dcaf0, #0bbad6); /* bleu clair */
  }
  
  .custom-progress-bar-warning {
    background: linear-gradient(90deg, #ffc107, #e0a800); /* jaune/orangé */
    color: #212529; /* texte foncé car fond clair */
  }
  
  .custom-progress-bar-danger {
    background: linear-gradient(90deg, #dc3545, #bb2d3b); /* rouge */
  }

  #filter_batch_group_createdAt_day,
  #filter_campaign_startAt_day {
    display: none;
  }
  
