.input-group {
   display: flex;
   align-items: center;
   justify-content: center;
}
.input-group .form-control {
   min-width: 50px;
   /* Define un ancho mínimo que funcione bien */
   max-width: 80px;
   /* Define un ancho máximo */
   text-align: center;
   font-size: 1rem;
   font-weight: bold;
}
.input-group button {
   flex-shrink: 0;
   /* Mantiene el tamaño de los botones */
}
@media (max-width: 768px) {
   .input-group {
      flex-wrap: nowrap;
      /* Evita que los elementos se envuelvan */
   }
}
.table-responsive {
   overflow-x: auto;
}
.product-image {
   width: 40px;
   height: 40px;
   object-fit: cover;
}
.input-group-text {
   font-size: 0.8rem;
}
.btn-outline-secondary {
   padding: 0.3rem 0.6rem;
}
.total-container {
   font-size: 1.2rem;
   font-weight: bold;
   text-align: end;
   padding-top: 20px;
}
.cart-delete-link {
    color: #dc3545; /* rojo Bootstrap */
    text-decoration: none;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}
.cart-delete-link:hover {
    color: #a71d2a; /* rojo más oscuro al pasar el mouse */
}