/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
.tooltip-toggle {
    display: inline-block !important; /* Forcer l'affichage */
    background: #0071a1;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 5px;
    transition: background 0.3s ease-in-out;
}

.tooltip-toggle:hover {
    background: #005b82;
}

/* Boîte tooltip */
.tooltip-box {
    display: none;
    position: absolute;
    background: #ffffff;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 999;
}

/* Afficher la tooltip quand active */
.tooltip-box.active {
    display: block;
}
