/* Mise en forme icône central */
.tooltip-wrapper {
position: fixed;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
}

.tooltip-icon {
background: none;
border: none;
cursor: pointer;
padding: 0;
transition: transform 0.2s ease;
}

.tooltip-icon:hover {
transform: scale(1.2);
}

.tooltip-icon img {
width: 40px;
height: auto;
}

/* Mise en page affichage infos centrales */
.tooltip-bubble {
position: absolute;
bottom: 125%;
left: 50%;
transform: translateX(-50%) translateY(10px);
background-color: #07345A;
color: #FAF7EE;
padding: 14px 18px;
border-radius: 12px;
border: 3px solid #FAF7EE;
font-family: 'Comic Sans MS', 'Arial Rounded MT Bold', sans-serif;
font-size: 15px;
line-height: 1.6;
text-align: left;
width: 350px; /* 260 initialement */
max-width: 90vw;
opacity: 0;
pointer-events: none;
transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
z-index: 1000;
}

/* Flèche */
.tooltip-bubble::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 10px;
border-style: solid;
border-color: #07345A transparent transparent transparent;
filter: drop-shadow(1px 1px 0 #fff);
}

/* Affichage actif */
.tooltip-bubble.active {
opacity: 1;
transform: translateX(-50%) translateY(0);
pointer-events: auto;
}