/* =============================== */
/*         INPUTS & SLIDERS        */
/* =============================== */

.input-full {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin: 6px 0 14px 0;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

/* Focus moderne */
.input-full:focus {
    border-color: #0070ba;
    box-shadow: 0 0 4px rgba(0,112,186,0.4);
    outline: none;
}

/* Inputs cachés */
.input-hidden {
    display: none;
}

/* Valeur mise en avant */
.value-strong {
    font-weight: 600;
    margin-left: 6px;
    color: #333;
}

/* Rangées d’options */
.panel-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

/* Sliders */
input[type="range"] {
    width: 100%;
    cursor: pointer;
}

/* Style du slider */
input[type="range"]::-webkit-slider-thumb {
    background: #0070ba;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    cursor: grab;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #ddd;
    height: 4px;
    border-radius: 4px;
}
