

.container {
    width: 40%; /* Ajusta el ancho según lo necesites */
    padding-bottom: 20px;
    margin-bottom: 10%;
    padding: 5%;
    position:static;
    font-family: 'Arial', sans-serif;
    overflow-y:auto;
    scrollbar-width: none; /* Oculta la barra de desplazamiento en Firefox */
}

.product-carrito {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.product-carrito img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 5px;
}

.total, .actions {
    margin-top: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.actions a, .actions button {
    color: #fff;
    background-color: #e3e9e3;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
    width: 10%; /* Ajusta el ancho según lo necesites */
    height: auto; /* Esto se ajustará automáticamente al contenido */
    text-align: center;
    padding: 5% ;
}

.eliminar {
    color: #000;
    margin-right: 5%;
}

.actions {
    display: flex; /* Para que los botones se alineen uno al lado del otro */
}

.actions a, .actions button {
    flex: 1; /* Para que los botones ocupen igual espacio */
}
