body {
    font-family: 'Roboto', sans-serif;
}

ul.pagination {
    margin: 0;
}

table.table {
    margin:0;
}

.thumbnail-container {
    overflow-x: auto; /* Activation du scroll horizontal */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* Meilleur scroll sur mobile */
    border:none!important;
}
.thumbnail img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}
.thumbnail img:hover, .thumbnail img.active {
    border: 1px solid #ccc;
}

.stock-cell {
    display: flex;
    justify-content: space-between; /* Espacement entre les éléments */
    gap: 5px; /* Pour espacer légèrement les éléments */
}

