table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px auto;
}

table, th, td {
    border: 1px solid rgb(255, 255, 255);
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Aplica un ancho del 50% a la segunda columna (índice 1) */
.product-table td:nth-child(2) {
    width: 50%;
}

/* Aplica un ancho del 50% a la imagen en la tercera columna (índice 2) */
.product-table td:nth-child(3) img {
    width: 100%; /* La imagen ocupará el 100% del ancho de la celda */
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
}

.pagination a:hover {
    background-color: #ccc;
}

.page-link-selected {
    background-color: #007bff;
    color: black;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }
  /* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

main > .container {
padding: 60px 15px 0;
}