
/* Style pour le défilement horizontal sur mobile */
.fixed-bottom .d-flex::-webkit-scrollbar {
    height: 3px;
}
.fixed-bottom .d-flex::-webkit-scrollbar-thumb {
    background-color: rgba(30, 66, 159, 0.2);
    border-radius: 3px;
}

/* Animation au survol */
.fixed-bottom img {
    transition: transform 0.2s;
}
.fixed-bottom img:hover {
    transform: scale(1.1);
}
