.bandwidth-selector-modern {
    margin: 10px 0;
}

.bandwidth-controls-modern{
  display: grid;
  grid-template-columns: 44px 1fr 44px; /* bouton | centre fluide | bouton */
  align-items: center;
  column-gap: 12px;
  justify-content: center;
  min-height: 44px;
}

.btn-bandwidth-modern {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-bandwidth-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-bandwidth-modern:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

/* On garde la grande barre blanche */
.bandwidth-display-modern{
  height: 44px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* On supprime le mini-card/pill bleu autour du nombre */
.bandwidth-display-modern .bandwidth-value{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 6px 0 0 !important;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: #2563eb;
}


/* au cas où un style global cible les spans à l’intérieur */
.bandwidth-display-modern .bandwidth-value *,
.bandwidth-display-modern .bandwidth-value::before,
.bandwidth-display-modern .bandwidth-value::after{
  all: unset; /* neutralise un badge/btn parasite éventuel */
}

/* l’unité reste du texte simple */
.bandwidth-display-modern .bandwidth-unit{
  font-size: .95rem;
  color: #64748b;
  line-height: 1;
}
