.quantity-input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
    font-size: 1em;
}

.quantity-decrease, .quantity-increase {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1em;
}

.quantity-decrease:hover, .quantity-increase:hover {
    background-color: #e0e0e0;
}

.buy-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
}

.buy-button:hover {
    background-color: #218838;
}

.remove-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
}

.remove-button:hover {
    background-color: #c82333;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}



/**************************************/

.cart-container {
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #f9f9f9;
}
.cart-container h2 {
    margin-bottom: 15px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}
.remove-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}
.remove-button:hover {
    background-color: #c82333;
}
.quantity-input {
    width: 60px;
    text-align: center;
}
.empty-cart {
    text-align: center;
    color: #777;
    font-style: italic;
}
.total-price {
    text-align: right;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.2em;
}
.form-container {
    margin-top: 20px;
}
.form-container input, .form-container button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}
.form-container button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}
.form-container button:hover {
    background-color: #218838;
}