
/* Mobile: show only arrows for prev/next */
@media (max-width: 767.98px) {
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child  .page-link {
        position: relative;
        text-indent: -9999px;   /* hide "Précédent"/"Suivant" + the original arrow */
        overflow: hidden;
        white-space: nowrap;

        /* Optional: make tap targets comfy */
        width: 2.5rem;
        height: 2.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pagination .page-item:first-child .page-link::before {
        content: "«";
        position: absolute;
        text-indent: 0;
        font-size: 1.1rem;
        line-height: 1;
    }

    .pagination .page-item:last-child  .page-link::after {
        content: "»";
        position: absolute;
        text-indent: 0;
        font-size: 1.1rem;
        line-height: 1;
    }
}


@media (max-width: 576px) {
    .table td, .table th { padding: .5rem .5rem; }
    .table .fa-image { font-size: 1.1rem; }
}
/* Prevent long seller names from blowing up width */
.sellerInfoLink { max-width: 140px; display:inline-block; vertical-align:bottom; }
@media (max-width: 576px) {
    .sellerInfoLink { max-width: 110px; }
}
.sellerInfoLink { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }


