.product_top_bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.left_drop {
  display: flex;
  gap: 1rem;
}

/* Sur mobile, empiler les éléments */
@media (max-width: 767px) {
  .product_top_bar {
    flex-direction: column;
    align-items: stretch;
  }

  .left_drop {
    flex-direction: column;
    width: 100%;
  }

  .sorting,
  .show {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

/* Style général pour les select */
.sorting,
.show {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

/* Assurer que les select ne débordent pas */
.left_drop select {
  max-width: 200px; /* Ajustez selon vos besoins */
}

/* Style pour la pagination */
.dataTables_paginate .pagination {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.dataTables_paginate .pagination .page-item {
  flex: 0 0 auto;
}


