/* ── Conteneur ───────────────────────────────────────────────── */
.ginput_container_stepper {
    display: flex!important;
    align-items: center;
    gap: 14px;
}

/* ── Icône ───────────────────────────────────────────────────── */
.gf-stepper-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Wrapper (barres + label) ────────────────────────────────── */
.gf-stepper-wrapper {
    display: flex!important;;
    flex-direction: column;
    gap: 6px;
}

/* ── Ligne de contrôles ──────────────────────────────────────── */
.gf-stepper-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Boutons +/- ─────────────────────────────────────────────── */
.gf-stepper-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    user-select: none;
    flex-shrink: 0;
}
.gf-stepper-btn:hover  { background: #ddd; }
.gf-stepper-btn:active { background: #bbb; }
.gf-stepper-icon-inline{
     background: #bbb;
}
/* ── Barres de progression ───────────────────────────────────── */
.gf-stepper-bars {
    display: flex!important
    ;
    align-items: flex-end;
    gap: 4px;
}

.gf-stepper-bar {
    display: block;
    width: 18px;
    height: 28px;
    border-radius: 3px;
    background: #e0e0e0;
    transition: background 0.2s ease, transform 0.15s ease;
}

.gf-stepper-bar--active {
    background: #4f8ef7;   /* ← couleur personnalisable */
    transform: scaleY(1.1);
}

/* ── Valeur textuelle ────────────────────────────────────────── */
.gf-stepper-label {
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 0.03em;
}