﻿
.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cart-item-image {
    flex: 0 0 auto;
    margin-right: 15px;
}

    .cart-item-image img {
        width: 80px;
        height: auto;
    }

.cart-item-details {
    flex-grow: 1;
    padding-left: 10px;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #555;
    font-size: 18px;
    margin-right: 10px;
}

.remove-item {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;

}

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}
