.btn_var {
    border-radius: 5px;
    color: var(--bleu);
    margin-top: 5px;
    padding: 6px;
}

.btn_var:hover {
    color: white;
    background-color: var(--bleu_clair);
    cursor: pointer;
}

.linkvision {
    color: var(--bleu);
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.box {
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

/* État visible */
.visible {
    max-height: 700px;
    /* hauteur max suffisante pour le contenu */
    opacity: 1;
}


/* État caché */
.hidden {
    max-height: 0;
    opacity: 0;
}