
            .cart-item {
              display: flex;
              align-items: center;
              border-bottom: 1px solid #ddd;
              padding: 10px 0;
            }
            .cart-item:last-child {
              border-bottom: none;
            }
            .cart-item img {
              max-width: 120px;
              margin-right: 15px;
            }
            .cart-item .item-details {
              flex-grow: 1;
            }
            .cart-item .item-details h5 {
              font-weight: bold;
            }
            .cart-item .item-details p {
              margin-bottom: 5px;
            }
            .cart-item .quantity-controls {
              display: inline-flex;
              align-items: center;
              border: 1px solid #ddd;
              border-radius: 4px;
              margin-right: 10px;
            }
            .cart-item .quantity-controls button {
              padding: 4px 8px;
              background-color: transparent;
              border: none;
              cursor: pointer;
            }
            .cart-item .quantity-controls input {
              width: 40px;
              text-align: center;
              border: none;
            }
            .cart-item .remove-btn {
              background-color: transparent;
              border: none;
              color: #dc3545;
              cursor: pointer;
            }
            .cart-summary {
              background-color: #f9f9f9;
              padding: 20px;
              border: 1px solid #ddd;
              border-radius: 4px;
            }
            .cart-summary h5 {
              font-weight: bold;
            }
            .cart-summary ul {
              list-style: none;
              padding: 0;
              margin-bottom: 20px;
            }
            .cart-summary li {
              display: flex;
              justify-content: space-between;
              margin-bottom: 10px;
            }
            
        .container {
            padding-top: 20px;
            padding-bottom: 20px;
            background-color: #e9ecef; /* Light gray background */
            border-radius: 10px; /* Rounded corners */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    
        }
        .card-footer {
            background-color: #f8f9fa; /* Light gray footer background */
            border-top: 1px solid #dee2e6; /* Light gray border */
            padding: 10px 15px; /* Add some padding */
        }
    
        .text-muted {
            color: #6c757d; /* Gray text color */
        }
    
        .jumbotron {
            background-color: #f8f9fa; /* Light gray background */
            border-radius: 10px; /* Rounded corners */
            padding: 20px; /* Add padding */
            margin-bottom: 30px; /* Add margin bottom */
        }
    
        .display-4 {
            font-size: 36px; /* Larger heading size */
            color: #333333; /* Dark text color */
            text-align: center; /* Center-align heading */
        }

        a.cart_button{
            color:white;
            text-decoration:none;
        }