/* ===== LABEL AVEC INFOBULLE ===== */

.label-with-tooltip {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Pictogramme ? */
.tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 11px;
    font-weight: bold;
    color: #FFF;
    border-radius: 0.8em;
    cursor: help;
    background: #0054a6;
}

/* Infobulle */
.tooltip-content {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    max-width: 320px;
    background: #1e293b;
    color: #fff;
    font-size: 1.1em;
    line-height: 1.4em;
    padding: 10px 12px;
    border-radius: 0.4em;
    /*text-align: center;*/
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 10;
    text-transform: none !important;
}

/* Petite flèche */
.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

/* Affichage au hover et au focus */
.tooltip-wrapper:hover .tooltip-content,
.tooltip-wrapper:focus .tooltip-content,
.tooltip-wrapper:active .tooltip-content {
    opacity: 1;
    visibility: visible;
}

/* Override du label pour l'infobulle */
.frm_checksnmvr_champ label.label-with-tooltip {
    display: flex;
    align-items: center;
}

.tooltip_title {margin:0 0 5px 0; padding:0 0 5px 0; border-bottom:1px solid #4b5563;}
.tooltip_item {margin:2px 0; padding:0;}
.tooltip_item_bleu {color:#93c5fd;}
.tooltip_item_bold {font-weight:bold;}