.lato {
    font-family: sans-serif;
}

.jplist-hidden {
    display: none;
}

.jplist-sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    background: #f1f1f1;
    padding-bottom: 5px;
}

.sticky-demo .panel>.center {
    max-width: 100%;
}

.sticky-demo .jplist-sticky>.center {
    max-width: 95%;
}

.jplist-panel {
    color: #27252a;
    font-size: 12px; /* taille un peu plus petite */
}

/* Boutons, inputs, cases, labels, dropdowns */
.jplist-panel button,
.jplist-panel input[type=text],
.jplist-panel input[type=checkbox],
.jplist-panel input[type=radio],
.jplist-panel .jplist-label,
.jplist-panel .jplist-clear,
.jplist-drop-down,
.jplist-select {
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #27252a;
    font-weight: 500; /* un peu plus léger */
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
    cursor: pointer; /* curseur uniforme */
    text-shadow: none;
    box-shadow: none;
    font-size: 12px;
    font-weight: 600;    /* plus léger */
}

/* Hover modernisé */
.jplist-panel button:hover,
.jplist-panel .jplist-icon:hover,
.jplist-panel .jplist-clear:hover,
.jplist-drop-down:hover .jplist-dd-panel,
.jplist-panel label:hover {
    color: #0381bb;
    background: #f2f2f2;
}

/* Disabled & selected */
.jplist-panel button.jplist-disabled {
    background: #e3e3e3;
    color: #6c6c6c;
    cursor: default;
}

.jplist-panel button.jplist-selected,
.jplist-selected {
    color: #f03800;
}

/* Inputs texte */
.jplist-panel input[type=text] {
    width: 140px;
    text-indent: 5px;
    cursor: text; /* curseur texte pour les inputs */
    font-weight: 400; /* plus léger */
}

/* Labels */
.jplist-panel label {
    display: inline-flex;
    align-items: center; /* centrage vertical parfait */
    cursor: pointer;     /* doigt sur labels */
    margin-right: 15px;  /* espace entre labels */
    font-weight: 500;    /* plus léger */
}

/* Cases à cocher et radio */
.jplist-panel input[type=checkbox],
.jplist-panel input[type=radio] {
    margin-right: 6px;   /* espace entre case et texte */
    vertical-align: middle;
}

/* Boxes & dropdowns */
.jplist-box,
.jplist-drop-down,
.jplist-select {
    display: inline-flex;
    align-items: center;
}

/* Dropdown menu */
.jplist-drop-down ul {
    position: absolute;
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
    background: #fff;
    width: 150px;
    z-index: 1000;
}

.jplist-drop-down ul li {
    padding: 0 10px;
    height: 32px;
    line-height: 32px;
    cursor: pointer; /* doigt sur éléments dropdown */
}

.jplist-drop-down ul li:hover {
    background-color: #ececec;
}

/* Responsive */
@media only screen and (max-width:600px) {
    .jplist-panel {
        display: none;
    }    
}

/* iOS button caché par défaut */
.jplist-ios-button {
    display: none;
}
@media only screen and (max-width:600px) {
    .jplist-ios-button {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    line-height: 30px;
    float: left;
    height: 30px;
    box-shadow: 0 0 1px #fff;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    text-shadow: 1px 1px 1px #fff;
    color: #27252a;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(100%, #efefef));
    background: -webkit-linear-gradient(top, #fff 0, #efefef 100%);
    background: linear-gradient(to bottom, #fff 0, #efefef 100%);
}
.jplist-ios-button:hover {
    background: #f2f2f2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fafafa), color-stop(100%, #ededed));
    background: -webkit-linear-gradient(top, #fafafa 0, #ededed 100%);
    background: linear-gradient(to bottom, #fafafa 0, #ededed 100%);
}
.jplist-ios-show {
    display: block;
}
}