/* Force la largeur du trait pour tous les SVG animés */
.svg-animated {
    stroke-width: 6px !important;
}

.svg-animated path,
.svg-animated rect {
    animation: drawStroke 4.5s ease-in-out forwards;
}

@keyframes drawStroke {
    from {
        stroke-dashoffset: var(--length);
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}